Dev Blaze Posted March 22, 2017 Group: Members Topic Count: 68 Topics Per Day: 0.01 Content Count: 212 Reputation: 5 Joined: 01/24/12 Last Seen: February 19, 2019 Share Posted March 22, 2017 (edited) Allows players who afk and pubbing to gain points except players who use @autotrade or Vending I see this script any one help me - script hourly_point_main -1,{ OnInit: .max_hour = 5; .duration = 3600; .npc_name$ = strnpcinfo(3); bindatcmd "hourly", .npc_name$ + "::OnCheck"; end; OnClock0000: query_sql( "DELETE FROM acc_reg_num` WHERE `key` = '#daily_hour_count' AND `account_id` IN ( SELECT `account_id` FROM `char` WHERE `login` = 0 GROUP BY `account_id` ) " ); addrid(0); #daily_hour_count = -1; OnUpdate: deltimer .npc_name$+"::OnUpdate"; #daily_hour_count++; switch ( #daily_hour_count ) { case 1: #KAFRAPOINTS += 1; getitem 512,1; break; case 2: #KAFRAPOINTS += 2; getitem 512,2; break; case 3: #KAFRAPOINTS += 3; getitem 512,3; break; case 4: #KAFRAPOINTS += 4; getitem 512,4; break; case 5: #KAFRAPOINTS += 5; getitem 512,6; break; default: break; } OnPCLoginEvent: if ( #daily_hour_count < .max_hour ) { @timer = gettimetick(2) + .duration; addtimer ( .duration * 1000 ), .npc_name$+"::OnUpdate"; } if ( #daily_hour_count ) dispbottom "[ Hourly Rewards ] " + #daily_hour_count + "/" + .max_hour + " hour" + ((#daily_hour_count > 1)?"s":"") + " played!",0x9ae2d7; end; OnCheck: .@min = (@timer - gettimetick(2))/60; .@sec = (@timer - gettimetick(2))%60; dispbottom "[ Hourly Rewards ] Your next reward will be achieved in " + ((.@min)? "[ " + .@min + " ] minute" + ((.@min > 1)?"s":""):"") + ((.@min && .@sec)? " and ":"") + ((.@sec)? "[ " + .@sec + " ] second" + ((.@sec > 1)?"s":""):"") + "!",0x9ae2d7; end; } Edited March 22, 2017 by Akkarin I've told you countless times before to use Codebox instead of Quotes for code. Don't do it again. Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted March 23, 2017 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: Wednesday at 12:29 PM Share Posted March 23, 2017 6 hours ago, Dev Blaze said: Allows players who afk and pubbing to gain points except players who use @autotrade or Vending doc/script_commands.txt#L3665-L3685 Quote Link to comment Share on other sites More sharing options...
0 iamkevin Posted March 23, 2017 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 104 Reputation: 3 Joined: 09/15/16 Last Seen: July 20, 2024 Share Posted March 23, 2017 - script Hourly Active -1,{ OnUpdate: if( checkvending() == 0 && checkchatting() == 1 ){ set @Minute,@Minute + 1; if( @Minute % 60 == 0 ){ set #KAFRAPOINTS, #KAFRAPOINTS + 1; dispbottom "You've been Active for 60 minutes, +1 Kafra point(s) in your Balance."; set @Hour,@Hour + 1; if( @Hour % 7 == 0 ){ set #KAFRAPOINTS, #KAFRAPOINTS + 10; dispbottom "You've been Actively Online for 7 Hours, +10 Kafra point(s) in your Balance."; } } } OnPCLoginEvent: addtimer 60000,strnpcinfo(0)+"::OnUpdate"; end; } You can use this script, i dont know how to manipulate sql XD Quote Link to comment Share on other sites More sharing options...
0 Rynbef Posted March 23, 2017 Group: Forum Moderator Topic Count: 47 Topics Per Day: 0.01 Content Count: 937 Reputation: 124 Joined: 05/23/12 Last Seen: 23 hours ago Share Posted March 23, 2017 This simple script works fine: - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid); for(set .@i,0; .@i<getarraysize(.@accid); .@i++){ attachrid(.@accid[.@i]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting() && !checkidle()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~ Quote Link to comment Share on other sites More sharing options...
0 Dev Blaze Posted March 23, 2017 Group: Members Topic Count: 68 Topics Per Day: 0.01 Content Count: 212 Reputation: 5 Joined: 01/24/12 Last Seen: February 19, 2019 Author Share Posted March 23, 2017 12 minutes ago, Rynbef said: This simple script works fine: - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid); for(set .@i,0; .@i<getarraysize(.@accid); .@i++){ attachrid(.@accid[.@i]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting() && !checkidle()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~ Hello Rynbef~ Allows players who afk and pubbing to gain points except players who use @autotrade or Vending if (!checkvending() && !checkchatting() && !checkidle()){ <------------------------ This line Quote Link to comment Share on other sites More sharing options...
0 Rynbef Posted March 23, 2017 Group: Forum Moderator Topic Count: 47 Topics Per Day: 0.01 Content Count: 937 Reputation: 124 Joined: 05/23/12 Last Seen: 23 hours ago Share Posted March 23, 2017 Just remove ckeckidle() - script HorlyPoints -1,{ OnInit: end; OnMinute01: query_sql("SELECT `account_id` FROM `char` WHERE `online`='1'",.@accid); for(set .@i,0; .@i<getarraysize(.@accid); .@i++){ attachrid(.@accid[.@i]); if(!getstatus(SC_JAILED)){ if (!checkvending() && !checkchatting()){ dispbottom "[Hourly Point]: You've received a point."; getitem xxx,1; } } detachrid; } end; } Rynbef~ Quote Link to comment Share on other sites More sharing options...
-1 luismrb Posted April 6, 2017 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 0 Joined: 05/18/12 Last Seen: April 11, 2017 Share Posted April 6, 2017 Hello! Do you guys know how to reset the consecutive hours if the player logs out? Example: The player has already accumulated 3 hrs for staying online. Then the player logs out. Then when the player relogs in. The accumulated hours is reset to 0. Thanks! Quote Link to comment Share on other sites More sharing options...
Question
Dev Blaze
Allows players who afk and pubbing to gain points except players who use @autotrade or Vending I see this script any one help me
- script hourly_point_main -1,{ OnInit: .max_hour = 5; .duration = 3600; .npc_name$ = strnpcinfo(3); bindatcmd "hourly", .npc_name$ + "::OnCheck"; end; OnClock0000: query_sql( "DELETE FROM acc_reg_num` WHERE `key` = '#daily_hour_count' AND `account_id` IN ( SELECT `account_id` FROM `char` WHERE `login` = 0 GROUP BY `account_id` ) " ); addrid(0); #daily_hour_count = -1; OnUpdate: deltimer .npc_name$+"::OnUpdate"; #daily_hour_count++; switch ( #daily_hour_count ) { case 1: #KAFRAPOINTS += 1; getitem 512,1; break; case 2: #KAFRAPOINTS += 2; getitem 512,2; break; case 3: #KAFRAPOINTS += 3; getitem 512,3; break; case 4: #KAFRAPOINTS += 4; getitem 512,4; break; case 5: #KAFRAPOINTS += 5; getitem 512,6; break; default: break; } OnPCLoginEvent: if ( #daily_hour_count < .max_hour ) { @timer = gettimetick(2) + .duration; addtimer ( .duration * 1000 ), .npc_name$+"::OnUpdate"; } if ( #daily_hour_count ) dispbottom "[ Hourly Rewards ] " + #daily_hour_count + "/" + .max_hour + " hour" + ((#daily_hour_count > 1)?"s":"") + " played!",0x9ae2d7; end; OnCheck: .@min = (@timer - gettimetick(2))/60; .@sec = (@timer - gettimetick(2))%60; dispbottom "[ Hourly Rewards ] Your next reward will be achieved in " + ((.@min)? "[ " + .@min + " ] minute" + ((.@min > 1)?"s":""):"") + ((.@min && .@sec)? " and ":"") + ((.@sec)? "[ " + .@sec + " ] second" + ((.@sec > 1)?"s":""):"") + "!",0x9ae2d7; end; }
I've told you countless times before to use Codebox instead of Quotes for code. Don't do it again.
Link to comment
Share on other sites
6 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.