- Initiateur de la discussion
P
ProZerite
Geek suprême
- Messages
- 95
- Score réaction
- 9
- Points
- 110
Bonjour,
J'ai un script tel que :
!administration : godmode , noclip , cloak
!roleplay : enlève godmode , enlève noclip , enlève cloak
mais le cloak ne fonctionne pas , peut on me dire pourquoi ?
J'ai un script tel que :
!administration : godmode , noclip , cloak
!roleplay : enlève godmode , enlève noclip , enlève cloak
mais le cloak ne fonctionne pas , peut on me dire pourquoi ?
Code:
local whocanuse = { ["superadmin"] = true, ["admin"] = true, ["modo"] = true
}
hook.Add("PlayerSay", "administrationcommand", function(ply, text) if text == "!administration" and whocanuse[ply:GetUserGroup()] then ply:GodEnable() ULib.invisible(ply, true, 255) if ply:GetMoveType() == MOVETYPE_WALK then ply:SetMoveType(MOVETYPE_NOCLIP) end DarkRP.notify(ply, 1, 4, "Vous administrez !") elseif text == "!roleplay" and whocanuse[ply:GetUserGroup()] then ply:GodDisable() ULib.invisible(ply, false, 255) if ply:GetMoveType() == MOVETYPE_NOCLIP then ply:SetMoveType(MOVETYPE_WALK) end DarkRP.notify(ply, 1, 4, "Vous reprenez le RP !") end
end)