SA-MP Forums Archive
Request VIP sistem - 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: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Request VIP sistem (/showthread.php?tid=278476)



Request VIP sistem - dickyodie - 22.08.2011

hey can I find the system VIP / Premium Member can you help me


Re: Request VIP sistem - ServerScripter - 22.08.2011

Use LuxAdmin there are a VIP system , and simple to use


Re: Request VIP sistem - dickyodie - 22.08.2011

Quote:
Originally Posted by ServerScripter
View Post
Use LuxAdmin there are a VIP system , and simple to use
hey it's admin system admin system I've got right now I need a VIP system


Re: Request VIP sistem - doreto - 22.08.2011

if you dont find what you wont make you own its more easy !


Re: Request VIP sistem - grand.Theft.Otto - 22.08.2011

https://sampforum.blast.hk/showthread.php?tid=187229


Re: Request VIP sistem - Kingunit - 22.08.2011

It's not hard, script one by yourself. Add a line in your file.

Code:
VIP=0
Then you check at some commands if the VIP =1.
That's all,no need for a filterscript.


Re: Request VIP sistem - doreto - 22.08.2011

Quote:
Originally Posted by Kingunit
View Post
It's not hard, script one by yourself. Add a line in your file.

Code:
VIP=0
Then you check at some commands if the VIP =1.
That's all,no need for a filterscript.
here example for dickyodie here you one fast vip commands
i use include ZCMD but you can make what ever you like

PHP Code:
CMD:heal(playerid,params[])
{
    if(
PlayerInfo[playerid][pVip] >= 1)
    {
         
SetPlayerHealth(playerid,100.0);
    }
    else
    {
        
SendClientMessage(playerid,-1,"You are not vip ");
    }
}
    return 
true;