DIR Return Create A Forum - Home
---------------------------------------------------------
RunePalace
HTML https://runepalaceforums.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: Runescape Private Servers Help and Tutorials
*****************************************************
#Post#: 1399--------------------------------------------------
[317] Custom Yell Command [317] C&P
DIR By: Hybrid
Date: January 7, 2011, 10:43 pm
---------------------------------------------------------
Change your yell or add this at your commands :
--- Code ---
if (command.startsWith("yell") && command.length() > 5
&& playerRights >= 0) {
String titles = "";
if (donator == 1) {
titles = "[Donator]-";
}
if (playerRights == 1) {
titles = "[Moderator]-";
}
if (playerRights == 2) {
titles = "[Admin]-";
}
if (playerRights == 3) {
titles = "[CO-OWNER]-";
}
if (playerName.equalsIgnoreCase("YOURNAMEHERE")) {
titles = "[OWNER&CODER]-";
}
if (playerName.equalsIgnoreCase("OTHERNAMEHERE")) {
titles = "[Special Guy?]-";
}
yell(titles + "" + playerName + ": "
+ command.substring(5));
}
--- End Code ---
Hybrid.
*****************************************************
Page 1 of 1