Search the Community
Showing results for tags 'symbols'.
Found 5 results
-
If anyone can help me add into myserver Donator Symbols for chat and yell, I'd be glad to pay you $5-10 via Paypal. Add my skype xsamchenx or pm me
-
Hi, I was wondering how can i add ingame symbols by there name when they speak regular. I have the images ready to go and but you know how the mods have by there name when they talk. and admins have gold crown. i want to add new symbols or more symbols. I do not wana replace mod and admin. Does anyone know how to add more symbols in the game?
-
This is a way I wanted to try so you can have symbols, when using admin screen. This is only for rs2hd. Censor.java; under [CODE]public static String Replace(String text) { for (String s : censored) { if (text.contains(s)) { int length = s.length(); String replace = ""; for(int i = 0; i < length; i++) { replace += "*"; } text = text.replaceAll(s, replace); } }[/CODE] add [CODE]String words[] = { "int", "exc", "open", "close" }; String symbols[] = { "?", "!", "(", ")" }; for (int i = 0; i < words.length; i++) { text = text.replaceAll(words[i], symbols[i]); }[/CODE] Your 'Replace' method should look like this: [CODE]public static String Replace(String text) { for (String s : censored) { if (text.contains(s)) { int length = s.length(); String replace = ""; for(int i = 0; i < length; i++) { replace += "*"; } text = text.replaceAll(s, replace); } } String words[] = { "int", "exc", "open", "close" }; String symbols[] = { "?", "!", "(", ")" }; for (int i = 0; i < words.length; i++) { text = text.replaceAll(words[i], symbols[i]); } return text; }[/CODE] To add new words to match with symbols, only add them in the arrays.
-
Does anyone know how to type symbols like : ? ^ $ etc in the admin screen because now it wont work.