Je ne comprends pas

  • Initiateur de la discussion NathanYangunful
  • Date de début
  • Initiateur de la discussion
NathanYangunful

NathanYangunful

Geek
Messages
56
Score réaction
4
Points
95
Bonjour, j'ai voulu créé une custom commands ulx pour mon serveur, j'ai suivi ce tuto a la lettre:
Mais lorsque que je vais sur mon serveur moi je n'est pas la catégorie et la commande.

Voici le script:

local CATEGORY_NAME = "Nathan"

function ulx.respawn( calling_ply, target_ply )
if not target_ply:Alive() then
target_ply:Spawn()
ulx.fancyLogAdmin( calling_ply, true, "respawned", target_ply )
end
end

local respawn = ulx.command( CATEGORY_NAME, "ulx respawn", ulx.respawn,
"!respawn", true )
respawn:addParam{ type=Ulib.cmds.PlayerArg }
respawn:defaultAcces( ulib.ACCESS_ADMIN )
respawn:help( "Respawns a player" )
end

(le meme que la vidéo)

J'espere que vous pourrez me dire pourquoi sa ne marche pas.
 
C

chatom_

Geek
Messages
9
Score réaction
0
Points
65
Comme je t'es déjà dit sur discord, prend le model dans ulx/modules/sh/util.lua, car :
"ULib" UL en majs le reste en minuscule, "access" avec deux "s"


local CATEGORY_NAME = "Nathan"

function ulx.respawn( calling_ply, target_ply )
if not target_ply:Alive() then
target_ply:Spawn()
ulx.fancyLogAdmin( calling_ply, "#A respawned #T", target_ply )
end
end

local respawn = ulx.command( CATEGORY_NAME, "ulx respawn", ulx.respawn,
"!respawn", true )
respawn:addParam{ type=ULib.cmds.PlayerArg }
respawn:defaultAccess( ULib.ACCESS_ADMIN )
respawn:help( "Respawns a player" )
 
Discord d'entraide
Rejoignz-nous sur Discord