Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/18/14 in Posts

  1. Hell ya Best avatar on the forums
    5 points
  2. Maldesto changed my life, now im vegetarian.
    3 points
  3. 3 points
  4. If there's grass on the pitch, play ball. If she's finished potty training, let the genital juices start raining. These people are sick.
    2 points
  5. 'Too young' is just a name hahahahaha
    2 points
  6. this pranks sucks, they are not even realistic. I dont see any point of doing them
    2 points
  7. "My dick so hard, it make the metal detector go off"
    2 points
  8. PRETTY LITTLE LIARS FINALE TONIGHT O MAH GAWDDDDDD
    1 point
  9. Maldesto is gonna wack his dick on your face once he sees your avatar
    1 point
  10. Electronic/dubstep/hardstyle. Favourite song: Tristam Remember
    1 point
  11. Use this as avatar : Support Maldesto.
    1 point
  12. Seems good i might buy this later.
    1 point
  13. 1 point
  14. My avatar was changed. @Sex, what sort of witchcraft power do you possess?
    1 point
  15. 1 point
  16. Works 100% thanks so much, this made me richer than Bill Gates
    1 point
  17. Legit works great! nice find
    1 point
  18. Give me a small emoticon to add and i will.
    1 point
  19. 1 point
  20. I see you're going for an abstract state model, I took a similar approach when writing my first script yesterday Declaring fields to hold the states is bad design, you should try something like this: public enum State { MINING_ORE(new AbstractState() { ... }), DROPPING_ORE(new AbstractState() { ... }); private State(AbstractState abstractState) { ... } ... } then you can just loop through all of the states for(State s : State.values()) { if(s.getAbstractState().force(...)) { s.getAbstractState().run(); } } a lot more maintainable and it looks nicer too. also your naming is a bit off
    1 point
×
×
  • Create New...