Jump to content
  • 0
Sign in to follow this  
ThyroDree

[ Request ] Vip System [ Buffs Only ]

Question

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!!

Share this post


Link to post
Share on other sites

14 answers to this question

Recommended Posts

  • 0

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

 

set #vip,1;

 

and for the healer

 

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;}
Edited by Yahiko

Share this post


Link to post
Share on other sites
  • 0
{	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 : 

 

{	Id: 12936	AegisName: "Muramasa_Box"	Name: "Muramasa Box"	Type: 18	Buy: 20	Weight: 10	Script: <" rentitem 1173,604800; ">   //1 week},
Edited by Max

Share this post


Link to post
Share on other sites
  • 0

Question !... how can i set a certain players name for VIP buffs?

 

if(strcharinfo(0) == "Player Nick" || #vip == 1) {	   <full buffs>}

Share this post


Link to post
Share on other sites
  • 0

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 ^_^

Edited by jaiko23

Share this post


Link to post
Share on other sites
  • 0

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 ^_^

 

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

Share this post


Link to post
Share on other sites
  • 0

 

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 ^_^

 

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 ^_^

Share this post


Link to post
Share on other sites
  • 0

 

 

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 ^_^

 

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 ^_^

For guild id:

 

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

Share this post


Link to post
Share on other sites
  • 0

@@jaiko23

if(getcharid(3) == account_id && #vip == 1)

use AND(&&) boolean and the of code above is for 1 whole guild

He wants to give it for free to certain ID, so the char shouldn't have #vip == 1 :/ You're wrong here. :P

Share this post


Link to post
Share on other sites
  • 0

Thanks for both of you guys !! I love you <3 you really help me a lot ^_^

Just for you to know, there's "Thumbs up" button ^^

 

@@Oxxy i thought it was for whole guild with VIP == 1 hahaha, yeah my bad  :P  :D

Happens buddy

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.