Jump to content
  • 0
Sign in to follow this  
brother

help for hourly

Question

hi, how to add vip hourly in this script. i want addtional 20 hourly coin  for vip account. 

-    script    hourlypoints    -1,{
 
//--Start of the Script
OnPCLoginEvent:
attachnpctimer ""+strcharinfo(0)+"";
initnpctimer;
end;
   
//OnTimer30000:
//Check if Vending (normal or @at)
//if(checkvending() >= 1) {
//    dispbottom "The hourly badge rewards has stopped because you were vending . Please relog if you wish to start again.";
//    stopnpctimer;
//    end;
//}


OnTimer60000:
set @minute, @minute + 1;
//Check for 1 Minute
if(@minute == 60){
    set @minute,0;
    getitem 7859,5;
    dispbottom "You received 5 "+getitemname( 7859 )+" by staying ingame for 1 hour.";
    set @consecutive_hour, @consecutive_hour + 1;
    }
//Check for 12 hours consecutive
    if(@consecutive_hour == 12) {
    set @consecutive_hour,0;
    getitem 7859,100;
    dispbottom "You received 100 "+getitemname( 7859 )+" by staying ingame for consecutive of 12 hours.";
    }
stopnpctimer;
initnpctimer;
end;
 
}

 

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0
On 9/14/2020 at 3:06 PM, Neffletics said:

Check carefully if you're referring to group or gm level.

Change getgroupid() to getgmlevel()

already fix thank you

Share this post


Link to post
Share on other sites
  • 0
On 9/9/2020 at 11:09 PM, KhnKhymKh said:

assuming your VIP has a different group ID, let's say groupId > 0

if (getgroupid() > 0 ) { getitem 7859,20; } else { getitem 7859,5; }


if (getgroupid() > 0 ) {

getitem 7859,20;

} else {

getitem 7859,5;
}

 

not working i have group lvl 5 on vip can you help me to make it work? 

Share this post


Link to post
Share on other sites
  • 0
On 9/11/2020 at 2:28 PM, brother said:

not working i have group lvl 5 on vip can you help me to make it work? 

Check carefully if you're referring to group or gm level.

Change getgroupid() to getgmlevel()

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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