Thread: How to fix level range in right corner! Look here!

Results 1 to 5 of 5
  1. #1 How to fix level range in right corner! Look here! 
    Registered Member
    Join Date
    Aug 2009
    Posts
    100
    Thanks given
    2
    Thanks received
    1
    Rep Power
    37
    Used Source: Richscape Heavily Edited
    If your lever range in the right corner goes below
    0 & above 126

    then you might want to add \ replace
    your sendQuest with the " + level + " thingy.

    Put in your "WriteWildyLevel" Or whatever your boolean is called.
    Code:

    Give credits to me if you leach please

    Code:
    	if (level >= 0 && High <= 126) { 
    			sendQuest("" + level + "-" + High + "", 199);
    	} else if (level < 0 && High <= 126) {
    			sendQuest("0 - "+ High +"", 199);
    	} else if (level < 0 && High >= 126) {
    			sendQuest("0 - 126", 199);
    	} else if (High > 126 && level > 0) {
    			sendQuest(""+ level +"-126", 199);
    	}
    Reply With Quote  
     

  2. #2  
    Community Veteran

    Dexter Morgan's Avatar
    Join Date
    Nov 2008
    Age
    16
    Posts
    4,364
    Thanks given
    1,027
    Thanks received
    703
    Discord
    View profile
    Rep Power
    2991
    Lold.

    First, remove the site link.
    Secondly, learn English.

    And lastly, all you have to do is.
    Code:
    
    	if(High > 126) {
    		High = 126;
    	}
    	if(level < 3) {
    		level = 3;
    	}
    	sendQuest("" + level + " - " + High + "", 199);
    [Only registered and activated users can see links. ]
    Quote Originally Posted by UberNation View Post
    Did you update the quantum network sockets to match the polarity of the wilderness counter levels in the Boolean that divides the wilderness level by zero?
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    May 2009
    Posts
    1,387
    Thanks given
    21
    Thanks received
    14
    Rep Power
    0
    Quote Originally Posted by 2012 View Post
    learn English
    It's not only English, those symbols are used globally lol.
    Reply With Quote  
     

  4. #4  
    Donator


    Join Date
    Feb 2009
    Age
    27
    Posts
    2,128
    Thanks given
    261
    Thanks received
    280
    Rep Power
    563
    what 2012 said. u need like 2 lines..
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Aug 2009
    Posts
    100
    Thanks given
    2
    Thanks received
    1
    Rep Power
    37
    Quote Originally Posted by Mr./3alla™ View Post
    what 2012 said. u need like 2 lines..
    Not If you're planning to have an area like
    were there is no level range (= all levels)
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •