Welcome!

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

Sign up now!

Implemented Dev tools suggestions

Joined
Nov 18, 2013
Messages
120
When you select an object/npc/grounditem in the Dev panel, it should paint the polys on the screen to give a visual representation.
 

red

Joined
Nov 17, 2013
Messages
259
Yes I do agree with this, it is very challenging pin pointing which npc is which while they are all moving.
 
Joined
Jul 26, 2013
Messages
154
You have the name of the object/npc/grounditem when you use the RuneMate Development Toolkit. You can even arrange it by alphabetical order or distance from you.
 

red

Joined
Nov 17, 2013
Messages
259
You have the name of the object/npc/grounditem when you use the RuneMate Development Toolkit. You can even arrange it by alphabetical order or distance from you.
Yes, but I think there would be more required like Coordinates, or point on screen something along those lines of telling which one it is.
 
Joined
Jul 26, 2013
Messages
154
Well if you know the name of what you are looking for so for example the id of a Magic Tree and you stand next to Magic Tree, set it by alphabetical order, go to M and voila, Magic Tree id appears :p
 

red

Joined
Nov 17, 2013
Messages
259
Well if you know the name of what you are looking for so for example the id of a Magic Tree and you stand next to Magic Tree, set it by alphabetical order, go to M and voila, Magic Tree id appears :p
When working with npcs, they move and there are more than one.
EDIT: and sometimes there names are the same just different IDS that you need. Example: Freaky Forester has all those pheasants with different number of tails, all different IDS same name, moving around.
 
Joined
Jul 26, 2013
Messages
154
When working with npcs, they move and there are more than one.
EDIT: and sometimes there names are the same just different IDS that you need. Example: Freaky Forester has all those pheasants with different number of tails, all different IDS same name, moving around.

That is true, but from what I've heard from Cloud I don't think he'll implement a canvas due to detectability reasons if I recall correctly.
 
Joined
Nov 18, 2013
Messages
120
That is true, but from what I've heard from Cloud I don't think he'll implement a canvas due to detectability reasons if I recall correctly.

So will paints be null? Will we have to use GUI's to display information?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
So will paints be null? Will we have to use GUI's to display information?
For the near (and possibly not so near) future, you will not be able to place an overlay over the canvas (also known as a paint). Instead, you can use the full javafx library to render beautiful scenes in the botpane, which is shown below the game. In V1.1.3, it's disabled because of several bugs we were experiencing, but it's fixed in V1.1.4 and I'm almost positive you'll realize that for most purposes, it's a far better way to display information.
 
Joined
Nov 18, 2013
Messages
120
For the near (and possibly not so near) future, you will not be able to place an overlay over the canvas (also known as a paint). Instead, you can use the full javafx library to render beautiful scenes in the botpane, which is shown below the game. In V1.1.3, it's disabled because of several bugs we were experiencing, but it's fixed in V1.1.4 and I'm almost positive you'll realize that for most purposes, it's a far better way to display information.

That's all I care about haha. I like the JavaFX library better anyway than a canvas. Are we able to show a 3d mesh such as an NPC model with the polygons given with JavaFX?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
That's all I care about haha. I like the JavaFX library better anyway than a canvas. Are we able to show a 3d mesh such as an NPC model with the polygons given with JavaFX?
I'm sure you could, it wouldn't give the same effect as overlaying it on the canvas though, that's one of the few situations where an overlay would probably be nicer.
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,046
That's all I care about haha. I like the JavaFX library better anyway than a canvas. Are we able to show a 3d mesh such as an NPC model with the polygons given with JavaFX?
I'm sure you could, it wouldn't give the same effect as overlaying it on the canvas though, that's one of the few situations where an overlay would probably be nicer.
To speak on these points, after having worked extensively with JavaFX to design the UI for RuneMate, I can tell you that paired with SceneBuilder it's one of the most awesome design languages/tools I've ever seen. And on the idea of using JavaFX to simulate paint, that's already something I've been playing around with. We may see overlays after all (but no promises). ;)

Just need to get @Cloud to fix adding JavaFX stuff to the local scripts classloader so I can test *hint hint*. :p
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,775
Would it be possible to add a separate transparent pane over the top of the applet window that could then be painted on. In doing so you would have to minimize this pane in order to click on the applet. But would this work? Never looked into it so don't know if it's possible but yeah, there's a thought.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
Would it be possible to add a separate transparent pane over the top of the applet window that could then be painted on. In doing so you would have to minimize this pane in order to click on the applet. But would this work? Never looked into it so don't know if it's possible but yeah, there's a thought.
I have a plan, but what you've stated wouldn't work because JFX doesn't integrate well with heavy-weight, AWT components such as RuneScape's Canvas. But as always, thanks for the suggestion and trying to help.
 
Top