Ulysses Stuff > General Chat & Help and Support

Command not showing up

(1/2) > >>

epictroller629:
I need help with these commands i cant see any of them in the XGui please help

Game mode(s) I am having this problem on:
DarkRP


--- Code: ---local CATERGORY_NAME = "Respawn"

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

local respawn = ulx.command( CATERGORY_NAME, "ulx respawn", ulx.respawn, "!respawn", true )
respawn:addParam{ type=ULib.cmds.PlayerArg }
respawn:defaultAccess( ULib.ACCESS_ADMIN )
respawn:help( "Respawns a player/target cmd made by Drew" )

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

local respawn = ulx.command( CATERGORY_NAME, "ulx srespawn", ulx.srespawn, "!srespawn", true )
respawn:addParam{ type=ULib.cmds.PlayerArg }
respawn:defaultAccess( ULib.ACCESS_ADMIN )
respawn:help( "Silenty respawns a player/target cmd made by Drew" )

--- End code ---

iViscosity:
I'm pretty sure it's because both of your commands use the same variable ("respawn") when defining the command.

epictroller629:

--- Quote from: iViscosity on October 14, 2018, 11:18:56 AM ---I'm pretty sure it's because both of your commands use the same variable ("respawn") when defining the command.

--- End quote ---
Well When I Has Only one command it still didnt work why?

iViscosity:
If you tried removing one after you had them both in, they'd still be defined in data/ulib/misc_registered.txt

epictroller629:
I'm Saying I Added srespawn After a test with just respawn

Navigation

[0] Message Index

[#] Next page

Go to full version