RAWRs Posted January 21, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 1 Joined: 11/17/11 Last Seen: April 19, 2013 Share Posted January 21, 2013 Any script for showing how long my server run'd after restart? something like @uptime but in chatroom Quote Link to comment Share on other sites More sharing options...
Euphy Posted January 22, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 22, 2013 Something like this? prontera,159,187,4 script Uptime 858,{ function Add_Zero; function Add_S; mes "[uptime]", "The server has been online for ", ((.t[1])?Add_S(.t[1],"hour")+", ":"")+ ((.t[1]||.t[2])?Add_S(.t[2],"minute")+" ":"")+ ((getarraysize(.t)>2)?"and ":"")+Add_S(.t[3],"second")+", "+ "and counting!"; close; function Add_Zero { return ((getarg(0)<10)?"0":"")+getarg(0); } function Add_S { return "^0055FF"+getarg(0)+" "+getarg(1)+((getarg(0)==1)?"":"s")+"^000000"; } OnInit: set .t[0], gettimetick(2); waitingroom " [ 00:00:00 ]",0; initnpctimer; end; OnTimer950: set .@t, gettimetick(2)-.t[0]; set .t[1], .@t/3600; set .t[2], .@t/60-.t[1]*60; set .t[3], .@t%60; end; OnTimer990: initnpctimer; delwaitingroom; waitingroom " [ "+Add_Zero(.t[1])+":"+Add_Zero(.t[2])+":"+Add_Zero(.t[3])+" ]",0; end; } 1 Quote Link to comment Share on other sites More sharing options...
RAWRs Posted January 22, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 1 Joined: 11/17/11 Last Seen: April 19, 2013 Author Share Posted January 22, 2013 (edited) Yeah its working Euphy, Thank You! But is it possible to make it for month,years? If yes,can you edit your previous script,add the Years & Months. Edited January 22, 2013 by RAWRs Quote Link to comment Share on other sites More sharing options...
Euphy Posted January 22, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 22, 2013 How would you want that displayed o.o? // This is pretty much unreadable. yr:mo:dy:hr:mn:sc 00:00:00:00:00:00 Quote Link to comment Share on other sites More sharing options...
RAWRs Posted January 22, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 1 Joined: 11/17/11 Last Seen: April 19, 2013 Author Share Posted January 22, 2013 (edited) How would you want that displayed o.o? // This is pretty much unreadable. yr:mo:dy:hr:mn:sc 00:00:00:00:00:00 Yeah.So it impossible to do it? yr:mo:dy:hr:mn:sc 0:00:000:00:00:00 Edited January 22, 2013 by RAWRs Quote Link to comment Share on other sites More sharing options...
RAWRs Posted January 26, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 1 Joined: 11/17/11 Last Seen: April 19, 2013 Author Share Posted January 26, 2013 How would you want that displayed o.o? // This is pretty much unreadable. yr:mo:dy:hr:mn:sc 00:00:00:00:00:00 Well what about days? Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 27, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted January 27, 2013 (edited) Just days dy:hr:mn:sc00:00:00:00 prontera,159,187,4 script Uptime 858,{ function Add_Zero; function Add_S; mes "[uptime]", "The server has been online for ", ((.t[1])?Add_S(.t[1],"day")+", ":"")+ ((.t[2])?Add_S(.t[2],"hour")+", ":"")+ ((.t[2]||.t[3])?Add_S(.t[3],"minute")+" ":"")+ ((getarraysize(.t)>2)?"and ":"")+Add_S(.t[4],"second")+", "+ "and counting!"; close; function Add_Zero { return ((getarg(0)<10)?"0":"")+getarg(0); } function Add_S { return "^0055FF"+getarg(0)+" "+getarg(1)+((getarg(0)==1)?"":"s")+"^000000"; } OnInit: set .t[0], gettimetick(2); waitingroom " [ 00:00:00 ]",0; initnpctimer; end; OnTimer950: set .@t, gettimetick(2)-.t[0]; set .t[1], .@t/(3600*24); set .t[2], .@t/3600-.t[1]*24; set .t[3], .@t/60-.t[2]*60; set .t[4], .@t%60; end; OnTimer990: initnpctimer; delwaitingroom; waitingroom " [ "+Add_Zero(.t[1])+":"+Add_Zero(.t[2])+":"+Add_Zero(.t[3])+":"+Add_Zero(.t[4])+" ]",0; end; } I don't think it's useful to display month and years, reloadscript reset the count. Edit : Fix one mistake. Edited January 27, 2013 by Capuche 1 Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted January 27, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted January 27, 2013 Why not use a permanent scope? Quote Link to comment Share on other sites More sharing options...
Euphy Posted January 27, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 27, 2013 @nanakiwurtz: He asked for temporary, unless I'm interpreting this incorrectly? showing how long my server run'd after restart Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted January 27, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted January 27, 2013 Hmhm.. I see.. I learned a lot, thanks Euphy and Capuche +1 for you both Quote Link to comment Share on other sites More sharing options...
RAWRs Posted January 27, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 1 Joined: 11/17/11 Last Seen: April 19, 2013 Author Share Posted January 27, 2013 Thanks to all of you Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted January 27, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted January 27, 2013 @nanakiwurtz: He asked for temporary, unless I'm interpreting this incorrectly? showing how long my server run'd after restart Is it possible to prevent @reloadscript resetting the time? Quote Link to comment Share on other sites More sharing options...
Euphy Posted January 27, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 27, 2013 The most accurate way is to get the time directly from your SQL database, as Brian posted here: http://www.eathena.ws/board/index.php?showtopic=207797 Quote Link to comment Share on other sites More sharing options...
Cisqua Posted March 9, 2013 Group: Members Topic Count: 46 Topics Per Day: 0.01 Content Count: 131 Reputation: 1 Joined: 12/29/12 Last Seen: August 10, 2016 Share Posted March 9, 2013 (edited) prontera,159,187,4 script Uptime 858,{ function Add_Zero; function Add_S; mes "[Uptime]", "The server has been online for ", ((.t[1])?Add_S(.t[1],"day")+", ":"")+ ((.t[2])?Add_S(.t[2],"hour")+", ":"")+ ((.t[2]||.t[3])?Add_S(.t[3],"minute")+" ":"")+ ((getarraysize(.t)>2)?"and ":"")+Add_S(.t[4],"second")+", "+ "and counting!"; close; function Add_Zero { return ((getarg(0)<10)?"0":"")+getarg(0); } function Add_S { return "^0055FF"+getarg(0)+" "+getarg(1)+((getarg(0)==1)?"":"s")+"^000000"; } OnInit: set .t[0], gettimetick(2); waitingroom " [ 00:00:00 ]",0; initnpctimer; end; OnTimer950: set .@t, gettimetick(2)-.t[0]; set .t[1], .@t/(3600*24); set .t[2], .@t/3600-.t[1]*24; set .t[3], .@t/60-.t[2]*60; set .t[4], .@t%60; end; OnTimer990: initnpctimer; delwaitingroom; waitingroom " [ "+Add_Zero(.t[1])+":"+Add_Zero(.t[2])+":"+Add_Zero(.t[3])+":"+Add_Zero(.t[4])+" ]",0; end; } found bug on this script.. if the server run for 12days its show like this d12:h00:m1234124:s00 the day wll not increase the time will add at minute.. then how to change this script like read when the server 1st start. Edited March 9, 2013 by Cisqua Quote Link to comment Share on other sites More sharing options...
Question
RAWRs
Any script for showing how long my server run'd after restart? something like @uptime but in chatroom
Link to comment
Share on other sites
13 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.