[ Request ] Vip System [ Buffs Only ]

ThyroDree

New member
Messages
556
Points
0
Location
Philippines
Github
bosxkate23
Emulator
can i request a vip system " if i have a vip for 5 days the npc gives a full buffs". FCP , Agi,Bless,Windwalk, and Complete Foods Buffs. THANKS!!

 
go make a rental item for 5 days with function like this

set #vip,1;

and for the healer

Code:
prontera,150,150,4<tab>script<tab>healer<tab>899,{set .@delay,3; // With Heal delay in secs    if (@HD > gettimetick(2)) end;    percentheal 100,100;    if (#vip) {    sc_start SC_BLESSING,360000,10;//  add extra buffs here    }    if (.@Delay) set @HD, gettimetick(2)+.@Delay;    dispbottom "wait 3 seconds until buff again";    close;}
 
Last edited by a moderator:
{ Id: 2220 AegisName: "Hat" Name: "Hat" Type: 5 Buy: 1000 Weight: 200 Def: 2 Loc: 256 View: 16 OnEquipScript: <" set #vip,1; "> OnUnequipScript: <" set #vip,0; ">},

make rental box hat for 5 days , or change the hat to anything you like , example : custom items for donator

so if the player using the hat he will be vip. if the item removed , the vip effect will gone.

if you dont know how to make a rental item : 

Code:
{	Id: 12936	AegisName: "Muramasa_Box"	Name: "Muramasa Box"	Type: 18	Buy: 20	Weight: 10	Script: <" rentitem 1173,604800; ">   //1 week},
 
Last edited by a moderator:
sir additional.... what if on a certain account? for example.. user id is : jaiko23

and also what if on a certain guild name? for example.. guildname is : Hellraios

btw sir @@Oxxy its working thanks a lot for your help
default_happy.png


 
Last edited by a moderator:
sir additional.... what if on a certain account? for example.. user id is : jaiko23

btw sir @@Oxxy its working thanks a lot for your help
default_happy.png
if(getcharid(3) == account_id || strcharinfo(0) == "Player Name" || #vip == 1)
so if guild id... ill just use

if(getcharid(3) == guild_id || getcharid(3) == account_id || strcharinfo(0) == "Player Name" || #vip == 1)

is this correct mr @@Oxxy ? yay thank you very much ! Glad your here to help us
default_happy.png


 
sir additional.... what if on a certain account? for example.. user id is : jaiko23

btw sir @@Oxxy its working thanks a lot for your help
default_happy.png
if(getcharid(3) == account_id || strcharinfo(0) == "Player Name" || #vip == 1)
so if guild id... ill just use

if(getcharid(3) == guild_id || getcharid(3) == account_id || strcharinfo(0) == "Player Name" || #vip == 1)

is this correct mr @@Oxxy ? yay thank you very much ! Glad your here to help us
default_happy.png
For guild id:

Code:
if(getcharid(2) == guild_id || getcharid(3) == account_id || strcharinfo(0) == "Player Name" || #vip == 1)
 
@@jaiko23

if(getcharid(3) == account_id && #vip == 1)
use AND(&&) boolean and the of code above is for 1 whole guild

 
Back
Top