Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved NullPointerException at a.Vn.getProjectedPolygons(cxb:82)

Joined
Nov 5, 2014
Messages
505
I've never personally encountered this and I run my script extensively, but it is showing up in my log.
I think this has been reported before but I can't find it:

@Cloud

Code:
java.lang.NullPointerException
 at a.Vn.getProjectedPolygons(cxb:82)
 at com.runemate.game.api.hybrid.local.hud.CompositeModel.getProjectedPolygons(zub:224)
 at com.runemate.game.api.hybrid.local.hud.Model.contains(ydb:166)
 at a.bL.contains(fqb:12)
 at a.vl.move(sqb:239)
 at com.runemate.game.api.hybrid.input.Mouse.move(ep:234)
 at a.bL.interact(fqb:232)
 at a.bL.interact(fqb:52)
 at scripts.MassFighter.Tasks.CombatHandler.pickupLoot(CombatHandler.java:129)
 at scripts.MassFighter.Tasks.CombatHandler.execute(CombatHandler.java:77)
 at com.runemate.game.api.script.framework.task.TaskScript.onLoop(ebb:148)
 at com.runemate.game.api.script.framework.LoopingScript.run(yhb:89)
 at com.runemate.game.api.script.framework.AbstractScript.start(plb:197)
 at a.sJ.run(clb:102)
 
Joined
Dec 14, 2014
Messages
2
pickupLoot returned null either before or after the script attempted to do something with it. ie. click, interact
check line 129 in CombatHandler that is where the exception was thrown.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
pickupLoot returned null either before or after the script attempted to do something with it. ie. click, interact
check line 129 in CombatHandler that is where the exception was thrown.
If you follow the stack you can see that the error occurred internally.
 
Top