domon99 Posted September 24, 2012 Posted September 24, 2012 need @afk code that can be use in rathena... and guide.. thanks Quote
Joseph Posted September 24, 2012 Posted September 24, 2012 http://rathena.org/b...k-with-afk-hat/ Moving to source request. Quote
Akkarin Posted September 24, 2012 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
Bin4ry Posted September 24, 2012 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
Akkarin Posted September 25, 2012 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
Question
domon99
need @afk code that can be use in rathena... and guide.. thanks
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.