Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. It would help if you posted what exactly your issue was :p I'm guessing you need help adding the jar as a reference library? You can do that by right clicking your package, selecting properties, Java Build Path, libraries tab, add external jar.
  2. If you're going to make up rules at least put it somewhere where scripters can see....also this should be up to the scripter and not the "community forum staff".
  3. I forget what it is you said but it sparked something, so yes you did help and I thank you added you to OP as well
  4. Thanks to @Jack for sparking the idea Variables: int currentXP; int gainedXP; int drawXP; int screenWidth = 520; int screenHeight = 337; double yMovement; int alpha = 255; In your onStart method: currentXP = client.getSkills().getExperience(Skill.YOUR_SKILL); Code for your onPaint method: gainedXP = client.getSkills().getExperience(Skill.YOUR_SKILL); if (gainedXP != currentXP) { drawXP = gainedXP - currentXP; currentXP = client.getSkills().getExperience(Skill.YOUR_SKILL); yMovement = 0; alpha = 255; } if (drawXP != 0 && alpha > 1) { g.setColor(new Color(255, 255, 255, alpha -= 2)); String drawString = "+ " + drawXP; int stringLength = (int) g.getFontMetrics().getStringBounds(drawString, g).getWidth(); g.drawString(drawString, screenWidth / 2 - stringLength / 2, (int) ((screenHeight / 2) - (yMovement += .7))); } If you're drawing other things after this remember to set the color back to what you want!! Here's what it looks like in game:
  5. No one cares about your service/account/whatever you were spamming anyway. You didn't even post this is the right section. http://osbot.org/forum/forum/111-shoutbox-ban-appeals/
  6. Swizzbeat

    BETA v1.7.73

    Sweet! Whens the fix for incorrectly loading the map data coming
  7. Looks awesome but I hate the constant glitching effect. Love the static effect on the "zel heppit" letters though!
  8. This is technically illegal, at least in the US.
  9. Looks good but I still hate that look and feel.
  10. Can I have a siggy with my name, a wolf, and a blue/white color scheme?
  11. Agreed, there should be a special rank for him
  12. This would make a great award, but not PiP.
  13. I don't think you even get post count in the spam section O_o
  14. Sounds awesome! Does this mean OSBot 2 will include full map web walking?
  15. Kinda funny that whoever did that can't do math very well, as people who buy VIP end up paying more over the 6 month period as compared to Sponsor.
  16. Looks awesome! Would have came in handy and saved me some time a few days ago when I need this
  17. Swizzbeat

    The Store

    I'm not exactly sure why there's even 2 stores now at all? What was the point in that O_o
  18. Hey well its something to strive for? Anyway I probably should edit the OP and basically state that I didn't mean to reference this all towards Java, but programming as a whole.
  19. The admins should move the thread for the rank application then. It's currently under a forum that only SDN Scripters+ can access
  20. I was thinking incorrectly when I titled the thread I do agree it should be about just programming experience in general. Overall I think it would be beneficial because there would be a select few "elite" members that could be recognized by the community as people that understand the world of computer science in depth. Also, there's no real programming ranks on the site. Yes there's ranks for being a scripter, however that's only for scripting/OSBot, not real programming.
  21. No? I wouldn't even be able to get it, it's merely a suggestion.
×
×
  • Create New...