DIR Return Create A Forum - Home
---------------------------------------------------------
RunePalace
HTML https://runepalaceforums.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: Runescape Private Servers Help and Tutorials
*****************************************************
#Post#: 1410--------------------------------------------------
[317] Afk Command [317]
By: Hybrid Date: January 7, 2011, 11:04 pm
---------------------------------------------------------
This is delta based but you can probably convert it to whatever
you want...
Difficulty: 1
All you need to do is copy and paste...
[code]Step 1
Copy and Paste this code into client.java in your customcommand
or in your commands.java
Code:
if (command.startsWith("afk")) {
startAnimation(1353);
updateRequired = true;
appearanceUpdateRequired = true;
plrText = "I'm AFK!";
plrTextUpdateRequired = true;
sM("To return, type ::afkoff");
}
Change the plrText to what you want tbh....
Step 2:
Copy and paste this code directly underneath it.
Code:
if (command.startsWith("afkoff")) {
startAnimation(6);
updateRequired = true;
appearanceUpdateRequired = true;
plrText = "I'm Back!";
plrTextUpdateRequired = true;
}[/code]
Again. Change the plrText if you wish...
Save. Compile and Run
#Post#: 1488--------------------------------------------------
Re: [317] Afk Command [317]
By: Zito6694 Date: January 8, 2011, 1:42 pm
---------------------------------------------------------
I'm a noob, what does it do?
#Post#: 1493--------------------------------------------------
Re: [317] Afk Command [317]
By: Hybrid Date: January 8, 2011, 6:18 pm
---------------------------------------------------------
it yells above your head "i'm afk", and makes you sit on a
chair.
#Post#: 1507--------------------------------------------------
Re: [317] Afk Command [317]
By: Zito6694 Date: January 8, 2011, 6:28 pm
---------------------------------------------------------
Oh, ok, lol
#Post#: 1550--------------------------------------------------
Re: [317] Afk Command [317]
By: Hybrid Date: January 8, 2011, 7:17 pm
---------------------------------------------------------
it's an ok, command.
#Post#: 1557--------------------------------------------------
Re: [317] Afk Command [317]
By: Zito6694 Date: January 8, 2011, 7:31 pm
---------------------------------------------------------
sounds like it
*****************************************************