domon99 Posted September 24, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 06/19/12 Last Seen: December 12, 2012 Share Posted September 24, 2012 need @afk code that can be use in rathena... and guide.. thanks Quote Link to comment Share on other sites More sharing options...
Joseph Posted September 24, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 341 Reputation: 43 Joined: 01/10/12 Last Seen: June 29, 2020 Share Posted September 24, 2012 http://rathena.org/b...k-with-afk-hat/ Moving to source request. Quote Link to comment Share on other sites More sharing options...
Akkarin Posted September 24, 2012 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Tuesday at 10:17 AM Share Posted September 24, 2012 http://rathena.org/b...k-with-afk-hat/ Joseph, that download link doesn't seem to work.. This achieves the same thing, but scripted: - script atcmd_afk -1,{ OnInit: bindatcmd("afk","atcmd_afk::Onafk"); bindatcmd("unafk","atcmd_afk::Onunafk"); end; Onafk: headupper=getlook(4); changelook 4,471; end; Onunafk: changelook 4,headupper; end; } Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted September 24, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted September 24, 2012 Here is another script that only used @afk for both enable and disable. - script atcmd_afk -1,{ OnInit: bindatcmd("afk","atcmd_afk::OnAFK"); end; OnAFK: if (@AFK) { set @AFK, 0; changelook 4,headupper; dispbottom "Away From Keyboard mode disabled."; end; } else { set @AFK, 1; headupper=getlook(4); changelook 4,471; dispbottom "Away From Keyboard mode enabled."; end; } } Quote Link to comment Share on other sites More sharing options...
domon99 Posted September 25, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 06/19/12 Last Seen: December 12, 2012 Author Share Posted September 25, 2012 thanks guys Quote Link to comment Share on other sites More sharing options...
Akkarin Posted September 25, 2012 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Tuesday at 10:17 AM Share Posted September 25, 2012 (edited) thanks guys No problem Can a mod move this script requests? Edited September 25, 2012 by Euphy (no need to move this) Quote Link to comment Share on other sites More sharing options...
Question
domon99
need @afk code that can be use in rathena... and guide.. thanks
Link to comment
Share on other sites
5 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.