SA-MP Forums Archive
[wanted] vip system - 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)
+--- Thread: [wanted] vip system (/showthread.php?tid=284792)



[wanted] vip system - tyler12 - 20.09.2011

hi im new to scripting could someone script me a vip system with commands
/vheal --- heal vip player
/vfix --- fix vip car
/vskin --- give vip a skin
/vobject --- give vip a object

and for rcon
/vset --- set vip for rcon
/vremove --- remove vip for rcon

thanks in advance

ive searched and all vip sytems have things i dont need

also can u explain how to /setvip

thanks for your help


Re: [wanted] vip system - =WoR=Varth - 20.09.2011

Should be in Script Request thread.
https://sampforum.blast.hk/showthread.php?tid=187229


Re: [wanted] vip system - tyler12 - 20.09.2011

hi just noticed thap


Re: [wanted] vip system - Kingunit - 20.09.2011

How about starting your own system. If you are saving VIP in your database you can create commands like:
pawn Код:
CMD:heal(playerid, params)
{
    if(PlayerInfo[playerid][VIP] < 0) return SendClientMessage(playerid, 0xFFFFFFFF, ".:: Error: You are not allowed to use this command! ::."); // Edit this to your own vars.
    SetPlayerHealth(playerid, 100);
   
    return 1;
}
Just a example


Re: [wanted] vip system - Stigg - 20.09.2011

Quote:
Originally Posted by tyler12
Посмотреть сообщение
hi im new to scripting could someone script me a vip system with commands
/vheal --- heal vip player
/vfix --- fix vip car
/vskin --- give vip a skin
/vobject --- give vip a object

and for rcon
/vset --- set vip for rcon
/vremove --- remove vip for rcon

thanks in advance

ive searched and all vip sytems have things i dont need

also can u explain how to /setvip

thanks for your help
Have you had a look at:

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


Re: [wanted] vip system - tyler12 - 25.09.2011

Quote:
Originally Posted by Stigg
Посмотреть сообщение
ive checked that but cmds i dont want