- Initiateur de la discussion
Alain LeThug
Psychopathe
- Messages
- 1 012
- Score réaction
- 211
- Points
- 280
Salut je cherches le script pour pouvoir mettre un model spécifique à un joueur.
genre ça ?Alain LeThug à dit:Salut je cherches le script pour pouvoir mettre un model spécifique à un joueur.
function ulx.setmodel( calling_ply, target_plys, model ) for k,v in pairs( target_plys ) do if ( not v:Alive() ) then ULib.tsayError( calling_ply, v:Nick() .. " is dead", true ) else v:SetModel( model ) end end ulx.fancyLogAdmin( calling_ply, "#A set the model for #T to #s", target_plys, model )
end
local setmodel = ulx.command( "Utility", "ulx setmodel", ulx.setmodel, "!setmodel" )
setmodel:addParam{ type=ULib.cmds.PlayersArg }
setmodel:addParam{ type=ULib.cmds.StringArg, hint="model" }
setmodel:defaultAccess( ULib.ACCESS_ADMIN )
setmodel:help( "Set a player's model." )
c'est un clean up ça, ça n'ajoute pas les commande que tu dit je crois que c'est l'addon custom ulx commandsDestoGames à dit:Si je ne me trompe pas avec cette addons tu peux avoir le !infammo !model !unmodel et d'autre http://steamcommunity.com/sharedfiles/filedetails/?id=678073450 je l'ai sur mon serveur à toi de tester ^^
On mets ou ?henoireil à dit:Code:function ulx.setmodel( calling_ply, target_plys, model ) for k,v in pairs( target_plys ) do if ( not v:Alive() ) then ULib.tsayError( calling_ply, v:Nick() .. " is dead", true ) else v:SetModel( model ) end end ulx.fancyLogAdmin( calling_ply, "#A set the model for #T to #s", target_plys, model ) end local setmodel = ulx.command( "Utility", "ulx setmodel", ulx.setmodel, "!setmodel" ) setmodel:addParam{ type=ULib.cmds.PlayersArg } setmodel:addParam{ type=ULib.cmds.StringArg, hint="model" } setmodel:defaultAccess( ULib.ACCESS_ADMIN ) setmodel:help( "Set a player's model." )
prend celui la tu as plus de commande http://forums.ulyssesmod.net/index.php?topic=7268.0Alain LeThug à dit:On mets ou ?