Torrents Stats
- Partagées
- 130 Go
- Téléchargées
- 0 bytes
- Ratio
- -
- Messages
- 75
- J'aime
- 17
- Trophées
- 25
- Inscrit
- 22 Août 2017
Bonjour a tous ,
Aujourd’hui je vais seulement vous apprendre a avoir le !setmodel sur son serveur .
A placé dans :
/garrysmod/addons/ulx/lua/ulx/modules/sh/customcommands.lua (Tu créer ce fichier)
Code :
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." )