Thread: [removed]l this issue

Results 1 to 8 of 8
  1. #1 [removed]l this issue 
    Banned
    Join Date
    Jul 2013
    Posts
    30
    Thanks given
    6
    Thanks received
    0
    Rep Power
    0
    someone said that it's because of this character to long or short. so i need to know how to change that certain number
     

  2. #2  
    Ex-Staff

    Koy's Avatar
    Join Date
    Oct 2010
    Posts
    1,871
    Thanks given
    1,299
    Thanks received
    910
    Rep Power
    5000
    You don't post a help thread and then link to another help thread on another site rofl.
     

  3. #3  
    Banned
    Join Date
    Jul 2013
    Posts
    30
    Thanks given
    6
    Thanks received
    0
    Rep Power
    0
    Quote Originally Posted by Koy View Post
    You don't post a help thread and then link to another help thread on another site rofl.
    it's my post on moparscape.index mate.
     

  4. #4  
    Ex-Staff

    Koy's Avatar
    Join Date
    Oct 2010
    Posts
    1,871
    Thanks given
    1,299
    Thanks received
    910
    Rep Power
    5000
    Quote Originally Posted by hamza555 View Post
    it's my post on moparscape.index mate.
    Well clearly, hence "another site".
     

  5. #5  
    Banned
    Join Date
    Jul 2013
    Posts
    30
    Thanks given
    6
    Thanks received
    0
    Rep Power
    0
    ok you going to help me?
     

  6. #6  
    Registered Member
    Wiffles's Avatar
    Join Date
    Dec 2007
    Posts
    1,168
    Thanks given
    100
    Thanks received
    198
    Rep Power
    493
    I recommend learning the basics of Java before attempting to go into a project/RSPS.

    Code:
    if ( command.startsWith("ban") && c.playerRights >= 3 ) {
    	String[] arguments = command.split(" ");
    	
    	if ( arguments.length < 2 ) {
    		c.sendMessage("Usage: ::ban player");
    		return;
    	}
    	
    	for (Player p : Server.playerHandler.players) {
    		if ( p == null ) {
    			continue;
    		}
    		String name = p.playerName;
    		if ( name.toLowerCase().equalsIgnoreCase(arguments[1]) ) {
    			// Add name to ban list.
    			p.disconnected = true;
    			c.sendMessage("Banned: " + name);
    			break;
    		}
    	}
    }
     

  7. #7  
    Registered Member
    Join Date
    Dec 2011
    Posts
    263
    Thanks given
    73
    Thanks received
    44
    Rep Power
    24
    Listen bro, by looking at your post on Mopar it seems you have absolutely no idea what you are doing and are even having problems communicating in simple English as to what your issue is. I also recommend learning the basics of Java AND English before trying to endeavour into RSPS development. I wouldn't usually post without actually helping give an answer to your initial question, but dam son this was so frustrating to see. You'll probably struggle to read my message and will ignore it but maybe someone else will understand the help section is to be HELPED with something you are trying to accomplish, not for people to fix problems with your poorly written, straight from the download section server.
     

  8. #8  
    [removed]l this issue



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    If you're going to ask help from our members then at least post on our site.

    Attached image
     

  9. Thankful user:



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. Removed - Close this
    By Arithium in forum Snippets
    Replies: 7
    Last Post: 12-16-2011, 01:23 AM
  2. Replies: 5
    Last Post: 11-29-2011, 05:46 AM
  3. Mega Help - Could A Professional Ever Solve This Issue?
    By James-RevolutionX in forum Help
    Replies: 1
    Last Post: 05-31-2010, 11:36 PM
  4. [req] a tut for this issue [req]
    By Mr Reece in forum Help
    Replies: 5
    Last Post: 11-24-2009, 07:53 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •