trizzy Posted April 27, 2015 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 92 Reputation: 2 Joined: 01/04/15 Last Seen: April 27, 2021 Share Posted April 27, 2015 (edited) - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: addtimer .timer,"hourlypoints::OnPointGet"; end; OnPointGet: while(checkvending() >= 1 || checkchatting() == 1 || checkidle()>=.dlimit) { sleep2 .delay; if(.@mes$=="") dispbottom set(.@mes$,"The hourly points event haulted because you were vending, chatting, or idle."); } set #CASHPOINTS, #CASHPOINTS + .point_amt; dispbottom "You received "+.point_amt+" Cashpoints by staying ingame for 1 hour"; dispbottom "Current Balance = "+#CASHPOINTS+" Cashpoints"; set @consecutive_hour, @consecutive_hour + 1; //Check for 3 hours consecutive if(@consecutive_hour == 3) { set @consecutive_hour,0; set #CASHPOINTS, #CASHPOINTS + .cpoint_amt; dispbottom "You receive "+.cpoint_amt+" Cashpoints in playing for 12 consecutive hours"; dispbottom "Current Balance = "+#CASHPOINTS+" Cashpoints"; } addtimer .timer,"hourlypoints::OnPointGet"; end; OnInit: set .timer, 1000*60*60; //Timer in milliseconds. set .cpoint_amt, 50; //Points gained for consecutive time online. set .point_amt, 10; //Normal points gained. set .delay, 1000; //Delay for idle re-check check. set .dlimit, 60*5; //Stop points if afk greater then in seconds. } ca someone set this script i want it 10 mins for 1 point and if you stay 1 hour in the server addtional 4 points. thanks in advance Edited April 27, 2015 by trizzy Quote Link to comment Share on other sites More sharing options...
Radian Posted April 27, 2015 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted April 27, 2015 Hi this might sound wrong but i think you must post this on Scripting Support.. I'll move it to script support.. Quote Link to comment Share on other sites More sharing options...
trizzy Posted April 27, 2015 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 92 Reputation: 2 Joined: 01/04/15 Last Seen: April 27, 2021 Author Share Posted April 27, 2015 okay thanks! HELP* Quote Link to comment Share on other sites More sharing options...
kn16 Posted April 30, 2015 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 28 Reputation: 10 Joined: 04/18/15 Last Seen: June 19, 2015 Share Posted April 30, 2015 you just have to change variable config at the bottom of the code First part : if(@consecutive_hour == 3) { //change 3 to 6 Second part : OnInit: set .timer, 1000*60*60; //Timer in milliseconds. change to 1000*60*10 or 1000*600 set .cpoint_amt, 50; //Points gained for consecutive time online. change 50 to 4 set .point_amt, 10; //Normal points gained. change 10 to 1 set .delay, 1000; //Delay for idle re-check check. set .dlimit, 60*5; //Stop points if afk greater then in seconds. } you also gotta change the display message for players And thank you, i'll post this script on the forum i use Quote Link to comment Share on other sites More sharing options...
Question
trizzy
ca someone set this script i want it 10 mins for 1 point and if you stay 1 hour in the server addtional 4 points. thanks in advance
Edited by trizzyLink to comment
Share on other sites
3 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.