SA-MP Forums Archive
Donators - 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: Donators (/showthread.php?tid=248726)



Donators - SpiderWalk - 15.04.2011

How to make a donator packs by commands but only for RCON admin.I want to make Donator Skin,Color,Weapons,And some commands

Help me please thanks


Re: Donators - [SRB]Genius - 15.04.2011

Yeah,i need that too help please


Re: Donators - NotoriousMOB - 15.04.2011

Like a VIP system?
use Search, im sure there's some realesed ones already.


Re: Donators - aircombat - 15.04.2011

use something like :

pawn Код:
CMD:donationpack(playerid,params[])
{
    if(//the variable for the donator ex : pInfo[playerid][Donator] < 1) return SendClientMessage(playerid,COLOR_RED,"You Gotta Be A Donator To Use This Command");
    else
    {
        SetPlayerSkin(playerid,skinid);
        GivePlayerWeapon(playerid,Weapon,Ammo);
        SetPlayerColor(playerid,Color);
    }
    return 1;
}



Re: Donators - SpiderWalk - 15.04.2011

More explains


Re: Donators - aircombat - 15.04.2011

well i won't be able to write the whole script for u you can search for "Vip System"


Re: Donators - SpiderWalk - 15.04.2011

But where to put it i forgot!


Re: Donators - aircombat - 15.04.2011

that's ZCMD so it can be put anywhere out of a callback but u gotta first at top of script put
pawn Код:
#include <zcmd>