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 Unable to load model component for 49407: null

Joined
Apr 18, 2015
Messages
408
The script is working perfectly but this prints to the stdout everytime the following is called; do I need to worry and how to fix it? :p

JavaScript:
//private GameObject rock; at the beginnnig of the class//

rock = GameObjects.getLoaded(new Filter<GameObject>() {
            @Override
            public boolean accepts(GameObject g) {
                return g != null && g.getDefinition() != null && g.getDefinition().getName().toLowerCase().contains("mineral deposit");
            }
        }).nearest();
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
It means that your resource cache was incomplete when runemate was first started. The easy solution is to just restart the client.
 
Top