Jump to content
  • 0

KAFRA POINT


zodiacro

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  04/01/13
  • Last Seen:  

I have a script for Houly rewards which gave my player Kafra Points. and now I need NPC for my player to exchange item by using the Kafra Points. Please forgive me if i dupplicate the post.

Quote

-    script    hourlypoints3    -1,{
   
OnPointGet:
    //Check for idle.
    while(checkvending() >= 1 || checkchatting() == 1 || checkidle() >= .idle) {
        if( .@mes$ == "" ) {
            dispbottom set( .@mes$, "The hourly points event stopped because you were vending, chatting, or idle!" );
            set @hourly_points_timer, 0;
        }
        sleep2 .delay;
    }
    
    @consecutive_timer++;
    .@time_string$ = Time2Str( @consecutive_timer * ( .timer / 1000 ) );
    dispbottom "You received "+.points+" Free Point(s) by staying ingame for 1 hour.";
    #KAFRAPOINTS = #KAFRAPOINTS + .points;
    dispbottom "Current Balance = "+#KAFRAPOINTS+" Free Point(s)";
    @consecutive_bonus++;

    //Check for consecutive timer.
    if(@consecutive_bonus == .cdelay) {
        @consecutive_bonus = 0;
        #KAFRAPOINTS = #KAFRAPOINTS + .cpoints;
        dispbottom "You receive a bonus "+.cpoints+" Free Point(s) by playing for minimum 3 hours consecutively!!!";
        dispbottom "Current Balance = "+#KAFRAPOINTS+" Free Point(s)";
    }
    
OnPCLoginEvent:
    addtimer .timer,"hourlypoints3::OnPointGet";
    @hourly_points_timer = gettimetick(2) + ( .timer / 1000 );
    end;
    
OnCheck:
    message strcharinfo(0),@hourly_points_timer ? Time2Str( @hourly_points_timer )+" Remaining.":"Something went wrong relog!";
    end;

OnInit:
    bindatcmd "check","hourlypoints3::OnCheck"; //@check to view time till next point.
    .timer   = 1000*60*60; //Timer in milliseconds. ( Default: 1000*60*60 [ = 1 Hour ] )
    .cdelay  = 3;          //Delay before receiving the consecutive bonus. ( Default: 3 [ { ~ 3 Hours } *Using default timer ] )
    .cpoints = 10;         //Points gained for consecutive time online. ( Default: 10 )
    .points  = 1;          //Normal points gained. ( Default: 1 )
    .delay   = 1000;       //Delay for idle re-check check. ( Default: 1000 [ = 1 Second ] )
    .idle    = 60*5;       //Player is idle after not moving for this many seconds. ( Default: 60*5 [ = 5 Minutes ] )
}

This is my script. Kindly assist.. Thanks

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  29
  • Reputation:   1
  • Joined:  07/16/18
  • Last Seen:  

acima

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1511
  • Reputation:   227
  • Joined:  08/03/12
  • Last Seen:  

6 hours ago, zodiacro said:

I have a script for Houly rewards which gave my player Kafra Points. and now I need NPC for my player to exchange item by using the Kafra Points. Please forgive me if i dupplicate the post.

This is my script. Kindly assist.. Thanks

You can use this.
 

prontera,155,166,4<tab>pointshop<tab>PointShop-Test3 123,#KAFRAPOINTS,678:5,607:5,608:3

or... change your scripts from KAFRAPOINTS to something else, change #KAFRAPOINTS to the same points.

You can use any, or create new points example , #ZODIACPOINTS 

But.. make sure the hourly script also change to #ZODIACPOINTS

  • Upvote 1
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...