Help with new GM (i started it from 0)
#2

LoL, so you want an admin system? Just look on filterscripts section, there are alot of admin filterscripts, if you can't make your own, download one!
EDIT:
Buuut. You can make a level system:
pawn Код:
new gPlayerLevel[MAX_PLAYERS];
pawn Код:
public OnPlayerConnect(playerid) {
    gPlayerLevel[playerid] = 0;
    return true;
}
And, if you want to set player's level:
pawn Код:
gPlayerLevel[playerid] = somelevelhere;
And, to make cmds only for some level:
pawn Код:
if(gPlayerLevel[playerid] < 2) return SendClientMessage(playerid, 0xAAAAAA, "You need to be level 2 to use this");
Will make a cmd for level 2
Reply


Messages In This Thread
Help with new GM (i started it from 0) - by sarioookas - 05.02.2011, 17:17
Re: Help with new GM (i started it from 0) - by Mean - 05.02.2011, 18:35
Re: Help with new GM (i started it from 0) - by sarioookas - 05.02.2011, 18:36
Re: Help with new GM (i started it from 0) - by xRyder - 05.02.2011, 18:38
Re: Help with new GM (i started it from 0) - by Mean - 05.02.2011, 18:39
Re: Help with new GM (i started it from 0) - by sarioookas - 05.02.2011, 18:48
Re: Help with new GM (i started it from 0) - by Mean - 05.02.2011, 19:00
Re: Help with new GM (i started it from 0) - by sarioookas - 05.02.2011, 19:00
Re: Help with new GM (i started it from 0) - by xRyder - 05.02.2011, 19:06
Re: Help with new GM (i started it from 0) - by sarioookas - 05.02.2011, 20:09

Forum Jump:


Users browsing this thread: 1 Guest(s)