Jump to content

OSBot 2.4.162


Alek

Recommended Posts

the issue with Player.getName(), as described in This closed ClientBugs thread is still not resolved for me.

I have deleted the whole OSBot folder, am 100% using 2.4.162, but 

parent.getPlayers().closest(playerName)

with parent being script and playerName a String below 13 characters

still results in

[ERROR][Bot #1][02/04 08:54:13 AM]: Error in bot executor!
java.lang.AbstractMethodError: bc.getName()Lorg/osbot/rs07/accessor/XName;
	at org.osbot.rs07.api.model.Player.getName(ok:99)
	at org.osbot.rs07.api.filter.NameFilter.match(ml:256)
	at org.osbot.rs07.api.filter.NameFilter.match(ml:196)
	at org.osbot.rs07.api.filter.FilterAPI.filter(pn:10)
	at org.osbot.rs07.api.EntityAPI.closest(nj:254)
	at org.osbot.rs07.api.EntityAPI.closest(nj:267)
	at org.osbot.rs07.api.EntityAPI.closest(nj:104)
	at lib.command.TradeRequest$1.condition(TradeRequest.java:64)
	at org.osbot.rs07.utility.ConditionalSleep.sleep(bk:47)
	at lib.command.TradeRequest.sendRequest(TradeRequest.java:66)
	at lib.command.TradeRequest.execute(TradeRequest.java:34)
	at lib.command.CommandHandler.handleCommand(CommandHandler.java:55)
	at Main.onLoop(Main.java:114)
	at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(yl:276)
	at java.lang.Thread.run(Thread.java:748)

 

  • Like 1
Link to comment
  On 2/4/2018 at 8:03 AM, guac said:

the issue with Player.getName(), as described in This closed ClientBugs thread is still not resolved for me.

I have deleted the whole OSBot folder, am 100% using 2.4.162, but 

parent.getPlayers().closest(playerName)

with parent being script and playerName a String below 13 characters

still results in

 

Expand  

Try deleting your OSBot folder.

  On 2/4/2018 at 2:34 AM, rentico said:

im having a few problems. i duno if it is a script issue but has been happening since last two client updates. it will be working (with alot more than normal lag) but then it just stops for example "fighting" and just stands still wont click on any thing. any ideas?

 

 

soz wrong place

Expand  

What does the logger say?

  • Like 1
Link to comment
  On 2/4/2018 at 8:17 AM, Alek said:

the issue with Player.getName(), as described in This closed ClientBugs thread is still not resolved for me.

I have deleted the whole OSBot folder, am 100% using 2.4.162, but 

parent.getPlayers().closest(playerName)

with parent being script and playerName a String below 13 characters

still results in

Expand  

same for  problem with me .

  • Like 1
Link to comment
  On 2/4/2018 at 10:37 AM, fstyle said:

@guac @Lewis  hit me up when you guys find a solution. :leech:

Expand  

Judging, among others, from the posts in different subforums, the issue still lies with the client. 

AFAIK the whole thing started when Jagex updated the game, which made some functions of the Osbot library no-function. 

Perhaps version 2.4.162 fixed some of the issues, but apparently not all. All we can do now is wait for the client to receive further fixes. 

  • Like 1
Link to comment
  On 2/4/2018 at 2:36 PM, Stimpack said:

can't reproduce bug described above. post ur code

Expand  

I just tried it again, once, and it somehow worked now. Did nothing differently. Anyway, here is the code, if it's still relevant for you.

		Output.logMessage("cp-3");
		// find player 
		Player tradePartner = null;
		
		new ConditionalSleep(10100,Shared.getRandomCheckFrequency(760, 2400)) {
			
			@Override
			public boolean condition() {
				return parent.getPlayers().closest(playerName) != null;
			}
		}.sleep();
		Output.logMessage("cp-2");
		try{
			tradePartner = parent.getPlayers().closest(playerName);
		}
		catch (NullPointerException e){
			Output.logError("couldn't find player (1): " + playerName);
			return false;
		}
		if (tradePartner == null){
			Output.logError("couldn't find player (2): " + playerName);
			return false;
		}
		
		// once the other player is not null, send trade request to that player
		Output.logMessage("cp-1");

 

It only ever got to "cp-3"

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...