Welcome!

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

Sign up now!
  1. the_crumb

    Shoutbox location

    I see that the shoutbox archive is in this sub-forum, but what page is the actual shoutbox on? I can't find it anywhere.
  2. the_crumb

    Title based perks

    Are there any perks associated with the titles: bot author, bot author++, tester, etc? The perks for supporters and sponsors are stated when upgrading, but I haven't seen anything about the others. If so, what are they, and what is the difference between a bot author and bot author++?
  3. the_crumb

    Question Bank hovering

    Banking at the Lumbridge combat academy bank chest with this code: if(Bank.open()){ Execution.delayUntil(Bank::isOpen, 800, 1400); } can sometimes fail multiple times in a row, resulting in the mouse moving around on top of the bank chest. Is there a better...
  4. the_crumb

    Resolved ViewportPath deprecated

    Why is ViewportPath deprecated, and which pathfinding class can be used in its place that only traverses using the viewport?
  5. the_crumb

    RS3 Rockertunities in legacy client

    Does anyone else have a problem seeing rockertunities in the RS3 legacy client? I don't see them at all.
  6. the_crumb

    Question Instantiating an InterfaceComponent

    I see interface components are shown as InterfaceComponent [x, y, z] on the dev tools. Is there a standard convention for instantiating an interface component with predetermined parameters of top level component x, child component y, and so on? Or perhaps whittling a parent container down to the...
  7. the_crumb

    Resolved Bankstanding problem with Unexpected Item Handler

    When doing a bankstanding process such as casting a spell, open bank, withdraw preset, repeat: occasionally I'll get an unexpected item immediately after the spell casting, in this case it's a small parcel. With the bank interface open it will hover over the parcel repeatedly trying to open it...
  8. the_crumb

    Bug Varp for active spellbook changed

    Calling Magic.Book.getCurrent() always returns STANDARD which is the value 0, regardless of the active spellbook. Decompiling the class shows it uses the varp id of 439. It looks like the correct varp id is actually 4. @Cloud
  9. the_crumb

    Question Mouse Overlay

    I see that on some of @tyb51's scripts that there are mouse overlays. The only posts that I can find are old and say that it can't be implemented. Assuming that information is outdated, is there a publicized way to show the mouse's position for debugging purposes? I've noticed that when my...
  10. the_crumb

    Bug Passing variables to classes returned by successTask() and failureTask()

    Is there a way to pass variables with the class returned by successTask() and failureTask()? For example, let's say we have the following method: @Override public TreeTask failureTask() { return layTrapAtCoord; } To promote composition over inheritance, I would prefer to reuse the...
  11. the_crumb

    Bug Multiple actions on one leaf

    I'm trying to perform multiple actions in one LeafTask as follows: GameObject trap = GameObjects.newQuery().names("Shaking box").reachable().results().nearest(); SpriteItem invTrap = Inventory.newQuery().names("Box trap").results().random(); if(trap != null && invTrap...
  12. the_crumb

    Resolved VisualRM official documentation

    I come from a traditional programming background and I'm trying out VisualRM because I don't have time to learn how the RuneMate API works to write scripts from scratch. I was wondering if there is any official or unofficial documentation for VisualRM variable types? Namely the definition of...
Top