[FilterScript] Simple Register System v1.0[zcmd] - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Simple Register System v1.0[zcmd] (
/showthread.php?tid=393381)
Simple Register System v1.0[zcmd] -
MarkzD - 18.11.2012
About:Basically it is just a registration and login, but I added 3 command for the administrator and one for command for player, you can add more commands!
Credits: MarkzD,Zeex[zcmd]
CMDS:/ban - 2lvl amd, /kick - 1lvl adm, /cc - 1 lvl adm, /pmenu - player
Video:
Dowloaded in next time
Hot to add your vip or adm command?
Type:
PHP код:
CMD:MYCMD(playerid,params[])
{
if(Player[playerid][pAdmin] >= 1)
{
SendClientMessage(playerid,0xFFFFFFFF,"LOL");
}
else
{
SendClientMessage(playerid,0xFF0000FF,"You are not adm!");
}
return 1;
}
or from vip
PHP код:
CMD:MYCMD(playerid,params[])
{
if(Player[playerid][pVip] >= 1)
{
SendClientMessage(playerid,0xFFFFFFFF,"LOL");
}
else
{
SendClientMessage(playerid,0xFF0000FF,"You are not vip!");
}
return 1;
}
1 - Lvl of vip\adm
PHP код:
Changelog
~19.11.12~System created
DOWNLOAD:
Pastebin
Solid files
Re: Simple Register System v1.0[zcmd] -
KingHual - 18.11.2012
I really suggest you use the Sscanf plugin instead of the PAWN stock one.
Re: Simple Register System v1.0[zcmd] -
MarkzD - 18.11.2012
I never used sscanf,because i can not: D
Re: Simple Register System v1.0[zcmd] -
xtr3mepWnaGe - 18.11.2012
great job, basic and simple [because you ARE a simple scripter]. but great.
Re: Simple Register System v1.0[zcmd] -
MarkzD - 18.11.2012
yp>><
Re: Simple Register System v1.0[zcmd] -
jpeg - 18.11.2012
OMG!