12.07.2011, 18:30
So you log into rcon
eg
/rcon login bob
then i want it so you can type in
/cash and it gives you 1k like the code below
and only rcon logged in people can do it?
eg
/rcon login bob
then i want it so you can type in
/cash and it gives you 1k like the code below
pawn Код:
if (strcmp("/cash", cmdtext, true, 10) == 0)
{
GivePlayerMoney(playerid, 1000);
return 1;
}