Thread: Need Help Adding ::yell

Results 1 to 6 of 6
  1. #1 Need Help Adding ::yell 
    Registered Member
    Join Date
    Jun 2013
    Posts
    78
    Thanks given
    2
    Thanks received
    4
    Rep Power
    11
    Hello All.. Can someone Please help me Add like ''Crowns/And Colours in the Yell''

    Here is my current commands.java package server.model.players.packets; import server.Config; import server.Co - Pastebin.com

    Can you guys Edit it ^ With any colours and the crowns please

    really would appreciate it

    Kind Regards,
    Nathan/Web-Developer
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Jun 2013
    Posts
    78
    Thanks given
    2
    Thanks received
    4
    Rep Power
    11
    BUmp please#@#@
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Jun 2013
    Posts
    78
    Thanks given
    2
    Thanks received
    4
    Rep Power
    11
    bum#@#@#@
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    May 2013
    Posts
    497
    Thanks given
    31
    Thanks received
    3
    Rep Power
    0
    same, i need help with this too.
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Jun 2013
    Posts
    78
    Thanks given
    2
    Thanks received
    4
    Rep Power
    11
    bump
    Reply With Quote  
     

  6. #6  
    Spread Love

    Dhruv's Avatar
    Join Date
    Feb 2012
    Age
    28
    Posts
    1,011
    Thanks given
    157
    Thanks received
    167
    Rep Power
    215
    PlayerAssistant.java

    Code:
    public void sendYell(String message) {
    		for (int i = 0; i < PlayerHandler.players.length; i++) {
    			if (PlayerHandler.players[i] == null)
    				continue;
    			Client client = (Client) PlayerHandler.players[i];
    			client.getPA().sendClan(client.playerName, message, "yell", client.playerRights);
    		}
    	}
    Commands.java

    Code:
    if (playerCommand.startsWith("yell")) {
    			String m = PlayerCommand.substring(4).toLowerCase();
    			if (Connection.isMuted(c)) {
    				c.sendMessage("You cannot yell you are muted.");
    			} else if (c.isDonator != 1) {
    				c.sendMessage("You do not have access to the yell channel.");
    			} else {
    				c.getPA().sendYell(Misc.optimizeText(m));
    			}
    		}

    Credits too Roboyto
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Need help adding yell command for 317 {PI}
    By osidrusher in forum Help
    Replies: 3
    Last Post: 06-04-2013, 10:28 PM
  2. Need help adding a yelling command
    By Polkaman in forum Help
    Replies: 3
    Last Post: 07-26-2011, 06:48 AM
  3. [PI] Need Help Adding ::yell
    By Gwas` in forum Help
    Replies: 5
    Last Post: 07-25-2010, 08:39 AM
  4. Need Help Adding Yell Colors Into My Client
    By Yugo_Pride in forum Help
    Replies: 0
    Last Post: 01-06-2010, 05:00 AM
  5. need help adding item requirements
    By manilla rose in forum RS2 Server
    Replies: 1
    Last Post: 09-25-2007, 12:23 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •