Thread: Wilderness Level Checking?

Results 1 to 5 of 5
  1. #1 Wilderness Level Checking? 
    Registered Member `Gaz's Avatar
    Join Date
    Sep 2008
    Posts
    158
    Thanks given
    0
    Thanks received
    0
    Rep Power
    9
    I am using BattleScape source and it doesn't check for wilderness levels as often as I could like. For example it doesn't update the wilderness level when you move into one straight away, how do I check it more often?
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    May 2009
    Posts
    1,220
    Thanks given
    4
    Thanks received
    61
    Rep Power
    0
    look for mainFrame in process, theirs a timer on how often it checks the wild timer.
    Reply With Quote  
     

  3. #3  
    Registered Member `Gaz's Avatar
    Join Date
    Sep 2008
    Posts
    158
    Thanks given
    0
    Thanks received
    0
    Rep Power
    9
    I found the mainFrame...

    Code:
    	public void mainFrame()
    	{
    		if (pcStatus > 0)
    			return;
    		if (!multiZone() && iconId != 0)
    		{
    			iconId = 0;
    			outStream.createFrame(61);
    			outStream.writeByte(0);
    		}
    		if (WildArea())
    		{
    			outStream.createFrame(208);
    			outStream.writeWordBigEndian_dup(197);
    			int wildLvl = (((absY - 3520) / 8) + 1);
    			changeText126("Level: " + wildLvl, 199);
    			if (multiZone() && iconId != 1)
    			{
    				iconId = 1;
    				outStream.createFrame(61);
    				outStream.writeByte(1);
    			}
    Which bit would I have to change?
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    May 2009
    Posts
    1,220
    Thanks given
    4
    Thanks received
    61
    Rep Power
    0
    i said in process... Find where mainframe is called in process.
    Reply With Quote  
     

  5. #5  
    Registered Member `Gaz's Avatar
    Join Date
    Sep 2008
    Posts
    158
    Thanks given
    0
    Thanks received
    0
    Rep Power
    9
    Ah, I found it. Thank you. (:
    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
  •