hi im having a problem from hourly points and free cash shop in cash shop when i buy in the npc for (hourly points) it will reduce but when after 1 hour the points will return and added more
example: i got 10 kafra points i buy the 5 points in the free kafra shop then it will deduct the 5 points after 1 hour the hourly will announce it will give you back the points of total of 10 again +5 coz of hourly
hourly points
Quote
- script hourlypoints -1,{
//--Start of the Script
OnPCLoginEvent:
addtimer .timer,"hourlypoints::OnPointGet";
end;
OnPointGet:
while(checkvending() >= 1 || checkchatting() == 1 ) {
sleep2 .delay;
if(.@mes$=="")
dispbottom set(.@mes$,"The hourly points event haulted because you were vending and opening PUB please relog again.");
}
set #KAFRAPOINTS, #KAFRAPOINTS + .point_amt;
dispbottom "You received "+.point_amt+" Reward Cash Points by staying ingame for 1 hour";
dispbottom "Current Balance = "+#KAFRAPOINTS+" Reward Cash Points";
set @consecutive_hour, @consecutive_hour + 1;
addtimer .timer,"hourlypoints::OnPointGet";
end;
OnInit:
set .timer, 1000*60*60; //Timer in milliseconds.
set .point_amt, 3; //Normal points gained.
set .delay, 1000; //Delay for idle re-check check.
//set .dlimit, 60*5; //Stop points if afk greater then in seconds.
}
npc free cash shop
Quote
//prontera,144,126,6 pointshop Hourly Point Shop 667,#KAFRAPOINTS,13534:5,13810:5,12913:5,12914:5,13718:5,12909:5,12922:5
//<ITEM_ID>:<PRICE>,<ITEM_ID>:<PRICE>,<ITEM_ID>:<PRICE>,<ITEM_ID>:<PRICE>
i found out that when i buy the item in npc hourly points the free cash shop here does not reduced. when i change char to reconnect that time it will reduced.
thank you in advance btw there's no error in map.exe
Question
cadz
hi im having a problem from hourly points and free cash shop in cash shop when i buy in the npc for (hourly points) it will reduce but when after 1 hour the points will return and added more
example: i got 10 kafra points i buy the 5 points in the free kafra shop then it will deduct the 5 points after 1 hour the hourly will announce it will give you back the points of total of 10 again +5 coz of hourly
hourly points
npc free cash shop
i found out that when i buy the item in npc hourly points the free cash shop here does not reduced. when i change char to reconnect that time it will reduced.
thank you in advance btw there's no error in map.exe
Edited by cadz4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.