03.09.2009, 03:37
Hey, I'm having this problem with the SetPlayerDrunkLevel
if I make a command called /drunkon and I type that ingame, how come it doesnt work? it always says "Server : Unknown command"
This is what I did
Is there anything I am missing from this? Or does it not work yet properly since it is still in beta?
if I make a command called /drunkon and I type that ingame, how come it doesnt work? it always says "Server : Unknown command"
This is what I did
pawn Код:
if (strcmp(cmd, "/drunkon", true) == 0)
{
SetPlayerDrunkLevel(playerid, 3000);
SendClientMessage(playerid, 0xFFAAAAAA, "You are now drunk !");
return 1;
}