SA-MP Forums Archive
[FilterScript] [FS] Base 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [FS] Base Vip System! (/showthread.php?tid=138074)

Pages: 1 2


[FS] Base Vip System! - aircombat - 31.03.2010

Second Filterscript :

What's This :
Its A Base For V.I.P System With 3 Levels , Which Hasn't A Registration System But It Saves Stats

================================================== ==========================================

Commands :
/setvip (Rcon Admins)
/viplevel (Regular Player)
Код:
Function : Pinfo[giveplayerid][Vip_Level]
================================================== ==========================================
Download :
PWN + AMX :

================================================== ==========================================


Re: [FS]Base Vip System! - Jonny_lockhart - 31.03.2010

What are the V.I.P benefits?


Re: [FS]Base Vip System! - aircombat - 31.03.2010

Base VIP it just a fs for u to start , like u can do commands for him or u can make him spawn with some money like :
Код:
OnPlayerSpawn(playerid)
{
new Money = GetPlayerMoney(playerid);
if(Pinfo[playerid][Vip_Level]) 
{
GivePlayerMoney(playerid,Money+100000);
return 1;
}
return 1;
}



Re: [FS]Base Vip System! - cozza123456 - 31.03.2010

Looks good, wont use it though.


Re: [FS]Base Vip System! - 02manchestera - 31.03.2010

This is good idea as most of the vip systems are just full of cr!p u dont want and with this can just have what you need.


Re: [FS]Base Vip System! - aircombat - 31.03.2010

thnx Loose Brackets xD


Re: [FS]Base Vip System! - DarkPower - 05.04.2010

i will use it


Re: [FS]Base Vip System! - [MWR]Blood - 05.04.2010

Good job!


Re: [FS]Base Vip System! - DeadalusNetwork - 06.04.2010

It's nice dude!Good work


Re: [FS]Base Vip System! - aircombat - 06.04.2010

Quote:
Originally Posted by Daedalus
It's nice dude!Good work
Quote:
Originally Posted by ikarus[PSYCHO
]
Good job!
thnx guys


Re: [FS]Base Vip System! - tofiffe - 27.04.2010

what about one to use the vehicles on the caligulas casino in LVA mode?


Re: [FS]Base Vip System! - sjvt - 27.04.2010

Why

Code:
new string1[128],string2[128],string3[128];
format(string1,sizeof(string1),"============================");
format(string2,sizeof(string2),"Your V.I.P Level Is %d",Pinfo[playerid][Vip_Level]);
format(string3,sizeof(string3),"============================");
SendClientMessage(playerid,COLOR_YELLOW,string1);
SendClientMessage(playerid,COLOR_YELLOW,string2);
SendClientMessage(playerid,COLOR_YELLOW,string3);
and not

Code:
new string[128];
SendClientMessage(playerid, COLOR_YELLOW, "============================");
format(string,sizeof(string),"Your V.I.P Level Is %d",Pinfo[playerid][Vip_Level]);
SendClientMessage(playerid, COLOR_YELLOW, "============================");
SendClientMessage(playerid,COLOR_YELLOW,string);



Re: [FS]Base Vip System! - RenisiL - 27.04.2010

Stupidly done, yes should be

Code:
dcmd_viplevel(playerid, params[])
{
	#pragma unused params
	new string[128];
	SendClientMessage(playerid, COLOR_YELLOW, "====================================");
	
	format(string,sizeof(string), "Your V.I.P Level Is %d" ,Pinfo[playerid][Vip_Level]);
	SendClientMessage(playerid, COLOR_YELLOW, string);
	
	SendClientMessage(playerid, COLOR_YELLOW, "====================================");
	return 1;
}



Re: [FS]Base Vip System! - aircombat - 27.04.2010

Quote:
Originally Posted by RenisiL
Stupidly done, yes should be
no one asked u noob


Re: [FS]Base Vip System! - ViruZZzZ_ChiLLL - 28.04.2010

Nice! Good job dude
________
Montana Dispensary


Re: [FS]Base Vip System! - Lorenc_ - 28.04.2010

Quote:
Originally Posted by ViruZZzZ_ChiLLL
Nice! Good job dude
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^


Re: [FS]Base Vip System! - MrEnd - 01.05.2010

hmm gone try this now

EDIT:

Hmm i dono :P need i to make it self? i dont want to that


Re: [FS]Base Vip System! - Donuts - 13.05.2010

Quote:
Originally Posted by ◄★►[MG
Esco◄★► ]
hmm gone try this now

EDIT:

Hmm i dono :P need i to make it self? i dont want to that
Yes you have to make it yourself that is why this filterscript is a base code.

Quote:
Originally Posted by Etch ❽ H
Quote:
Originally Posted by RenisiL
Stupidly done, yes should be
no one asked u noob
Lol'd


Re: [FS]Base Vip System! - aircombat - 23.05.2010

Quote:
Originally Posted by YeahYeahYeahs
Quote:
Originally Posted by ◄★►[MG
Esco◄★► ]
hmm gone try this now

EDIT:

Hmm i dono :P need i to make it self? i dont want to that
Yes you have to make it yourself that is why this filterscript is a base code.

Quote:
Originally Posted by Etch ❽ H
Quote:
Originally Posted by RenisiL
Stupidly done, yes should be
no one asked u noob
Lol'd
Lol me too , i lol'd on something i said :P


Re: [FS]Base Vip System! - XRVX - 23.05.2010

nice job