Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. FrostBug

    Notepad

    Not notepad, no.
  2. The onMessage method takes a Message argument, not String Example: public void onMessage(Message msg) throws InterruptedException { if (msg.getType() == MessageType.GAME && msg.getMessage().contains("Oh dear,")) { dead = true; } }
  3. Will try to get the new tabs out this weekend, as well as a fix for stamina potion decanting
  4. I assumed both were strings try this, then. SELECT a.id, a.rslogin, a.rswachtwoord, a.gebruikersnaam, p.proxy, c.subcategory FROM bots a INNER JOIN proxy p ON a.proxy_id=p.id AND (p.proxy='$proxy' OR '$proxy'='unspecified') INNER JOIN subcategory c ON a.category_id=c.subcat_id AND (c.subcat_id=$sub_category OR $sub_category=UNSPECIFIED_ID) If $proxy is also an integer, change 'unspecified' string to the unspecified id
  5. We haven't seen your schema or code, so its up to you to correct the little mistakes in here. By the looks of your query, either a.category_id is a varchar, or $sub_category is an integer. So whatever the case, fix the comparison clause in the subcategory inner join
  6. well, maybe like this, then? If we want to include results if either values have the "unspecified" value. Assuming that the unspecified value is literally "unspecified", this might do the trick: SELECT a.id, a.rslogin, a.rswachtwoord, a.gebruikersnaam, p.proxy, c.subcategory FROM bots a INNER JOIN proxy p ON a.proxy_id=p.id AND (p.proxy='$proxy' OR p.proxy='unspecified') INNER JOIN subcategory c ON a.category_id=c.subcat_id AND (c.subcategory='$sub_category' OR c.subcategory='unspecified')
  7. made a last minute edit to that query, did you grab the right one?
  8. Assuming the default values aren't valid proxies/categories, try this: SELECT a.id, a.rslogin, a.rswachtwoord, a.gebruikersnaam, p.proxy, c.subcategory FROM bots a INNER JOIN proxy p ON a.proxy_id=p.id AND p.proxy='$proxy' INNER JOIN subcategory c ON a.category_id=c.subcat_id AND c.subcategory='$sub_category'
  9. Lacking some info here; are these PHP variables? Do they hold default values when "unspecified" ? And yes, the WHERE clause here doesn't make sense
  10. When is that 2-def guide coming out?
  11. Legit players dont do them either
  12. FrostBug

    FrostCaves

    We're live on the SDN for beta testing I'll need a few testers with a variety of stats, preferably around the stat recommendation, but also someone with a maxed account
  13. FrostBug

    FrostCaves

    Script thread Update: Version 1.1 is now live, featuring changes to reduce the ban rate, as well as partial Mirror Mode support (see FAQ) ! This thread is for discussions and questions regarding the FrostCaves script. Script status: LIVE (Get it HERE) Demonstration video made by @Keven during early beta testing: PLEASE read below FAQ before buying the script and/or posting your questions FAQ Troubleshooting Info Screenshots Change Log Thank you @Fruity for the graphics Thank you @Zach for making this possible in the first place
  14. FrostBug

    FrostPuzzler

    Was just updated, so it should be good now
  15. FrostBug

    FrostPuzzler

    Thanks. Committed a fix. Should be live within 24 hours
  16. Quality post as always, thank you hoth
  17. Is it a bird? Is it a plane? No.. I'ts #IncestMan™
  18. OP probably wants something that will fly with the SDN :E.. I don't think possible jabba solution will
  19. That is not possible EDIT: Not on windows anyway, but I dont think on linux either.
×
×
  • Create New...