Jump to content
  • 0

Hourly reward only in maintown


Styx15

Question


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.02
  • Content Count:  47
  • Reputation:   0
  • Joined:  09/28/20
  • Last Seen:  

Hello i need hourly reward only in maintown ex only in prontera .
someone can help me to set that ? 

This is script i used.

Thank you

prontera,100,100,5    script    hourlypoints    139,8,11,{
end;

OnTouch:
    dispbottom "Stay here to get afk hourly points.";
    attachnpctimer();
    startnpctimer();
    end;
    
OnTimer10000:
    getmapxy(.@map$,.@x,.@y,0);
    if( distance(.x,.y,.@x,.@y)<=11
    && .@map$==.map$ ) {
        if( checkidle() ) {
            getitem(12875,1);
            dispbottom "Thank you for always stay near me";
            set @consecutive_hour, @consecutive_hour + 1;

            //Check for 1 hours consecutive
            if(@consecutive_hour == 1) {
                set @consecutive_hour,0;
                getitem(12875,1);
                dispbottom "Thank you for always stay near me";
            }
        }
    }
    attachnpctimer();
    initnpctimer();
    end;

OnInit:
    getmapxy(.map$,.x,.y,1);
    set .cpoint_amt, 50; //Points gained for consecutive time online.
    set .point_amt, 10; //Normal points gained.
}

 

Edited by Styx15
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  177
  • Reputation:   25
  • Joined:  12/24/14
  • Last Seen:  

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.02
  • Content Count:  47
  • Reputation:   0
  • Joined:  09/28/20
  • Last Seen:  

On 5/10/2022 at 7:40 PM, mR L said:

 

Thank you @mR L

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...