Aller au contenu
News ticker
  • Bienvenue sur le nouveau forum VeryGames
  • Welcome to the new VeryGames forum
  • VeryNews

    Skin couteau


    Overedge

    Messages recommandés

    Bonsoir,

    je suis sur Sourcemod et events script et voici un skin server pour remplacer les couteau normal par une lame en feu

    http://techknowmodels.19.forumer.com/viewtopic.php?t=309

    Il faut un plugin pour le faire fonctioner

    http://addons.eventscripts.com/addons/view/wepmodelchanger

    Une fois les deux mit sur le ftp que faire ?

     

    Voici deux exemple que j'ai trouver.

    mc_addweaponclass <classname> <worldmodel> <viewmodel> - Set all weapons of classname to have specified world and view models.

    mc_addweaponindex <index> <worldmodel> <viewmodel> - Set weapon at index to have specified world and view models.

    mc_addweaponuserid <userid> <class> <worldmodel> <viewmodel> - Set player with userid with weapon of class to have specified world and viewmodels

    mc_addweaponsteamid <steamid> <class> <worldmodel> <viewmodel> - Set player with steamid with weapon of class to have specified world and viewmodels

    mc_addweaponteam <team> <class> <worldmodel> <viewmodel> - Set all players on specified team with weapon of class to have specified world and viewmodels

    mc_addplayeruserid <userid> <model> - Set player with userid to have specified player model

    mc_addplayersteamid <steamid> <model> - Set player with steamid to have specified player model

    mc_addplayerteam <team> <model> - Set all players on specified team to have specified player model

    mc_delweaponclass <classname> - No longer force world/view models on classname

    mc_delweaponindex <index> - No longer force world/view models on index

    mc_delweaponuserid <userid> <class> - No longer force world/view models on userid with weapon of class

    mc_delweaponsteamid <steamid> <class> - No longer force world/view models on steamid with weapon of class

    mc_delweaponteam <team> <class> - No longer force world/view models on all players of specified team

    mc_delplayeruserid <userid> - No longer force player model on userid

    mc_delplayersteamid <steamid> - No longer force player model on steamid

    mc_delplayerteam <team> - No longer foce player model on all players of specified team

    et voici un exemple de script

     

    block load{ //Set all glock's models to that of an aug mc_addweaponclass weapon_glock weapons/w_rif_aug.mdl weapons/v_rif_aug.mdl //Set player with this steamid to have a glock model of an aug mc_addweaponsteamid "STEAM_0:1111" weapon_glock weapons/w_rif_aug.mdl weapons/v_rif_aug.mdl //Set all terrorists to have a glock model of an aug mc_addweaponteam #t weapon_glock weapons/w_rif_aug.mdl weapons/v_rif_aug.mdl //Set player with this steamid to have a terrorist leet player model mc_addplayersteamid "STEAM_0:1111" players/t_leet.mdl //Set all terrorists to have a terrorist leet player model mc_addplayerteam 2 players/t_leet.mdl} event player_connect{ //Set this player's glock model to that of an aug es mc_addweaponuserid event_var(userid) weapon_glock weapons/w_rif_aug.mdl weapons/v_rif_aug.mdl //Set this player's model to that of a terrorist leet es mc_addplayeruserid event_var(userid) players/t_leet.mdl} event player_spawn{ es_xset w_index 0 es playerget weaponindex w_index event_var(userid) weapon_glock //Set the weapon with this specific index to that of an aug if (server_var(w_index) > "0") then mc_addweaponindex server_var(w_index) weapons/w_rif_aug.mdl weapons/v_rif_aug.mdl}

     

     

    Ne sachant pas c'est quoi comme language ni faire ce script j'auraits besoin d'aide

    Modifié par Overedge
    Lien vers le commentaire
    Partager sur d’autres sites

    Rejoindre la conversation

    Vous pouvez publier maintenant et vous inscrire plus tard. Si vous avez un compte, connectez-vous maintenant pour publier avec votre compte.

    Invité
    Répondre à ce sujet…

    ×   Collé en tant que texte enrichi.   Coller en tant que texte brut à la place

      Seulement 75 émoticônes maximum sont autorisées.

    ×   Votre lien a été automatiquement intégré.   Afficher plutôt comme un lien

    ×   Votre contenu précédent a été rétabli.   Vider l’éditeur

    ×   Vous ne pouvez pas directement coller des images. Envoyez-les depuis votre ordinateur ou insérez-les depuis une URL.

    ×
    ×
    • Créer...