Jump to content

Dragon116

Supporter
  • Posts

    957
  • Joined

  • Last visited

 Content Type 

Profiles

Forums

Events

Reborn Development Blog

Rejuvenation Development Blog

Desolation Dev Blog

Everything posted by Dragon116

  1. Did not think Jazz looked liked that. Good to know =D Spine?
  2. Nope, dropping in to ruin your plans. Also @Lugruf, I'm not sure how an interface would allow me to manage the script state of a scene without creating an object reference. I'll have to give another look but I think delegate is the most effective. BMIC?
  3. Btw spine, I think you can use print("Mumbo Jumbo") to the same effect. BMIC, your first lesson is data types. int is for all integers (so no decimals), float is for decimals. Then there are byte sizes for numbers. A byte contains 8 bits and can store a number between 0-255 if it doesn't accept negative numbers, and -128 up to 127 if it does (0 is on the positive side, hence the lower 127). Then you have stuff like short, long, long long, which lets you store much more precise value ranges with numerous bytes. I've never needed these so I don't know them off the top of my head. The differences are for those who need to meticulously manage memory. So now you know why you see a number get capped at 255 in some games. The highest number that can be held in an int is 2 ^ 31 - 1 because that's the limit of a 32-bit system. Since we're moving into a standard of 64-bit systems, you'll see the limit go to 2 ^ 63 - 1 in the future, except old games likely won't due to legacy issues. Is that a good start BMIC?
  4. Dragon116

    Banned

    Banned for banning me for doing m job of banning the bannables.
  5. 6/10 - This looks like a generic birthday invitation.
  6. 1706 - That's because house cats serve no purpose.
  7. I thought it looked like you changed the eye color. Good thing I know I'm not crazy. Also spine, you could also look into using delegates. They let you assign a definition to a function during runtime (you can add multiple). So for instance, you have delegate Swap. You would do Swap += baseClass.Swap. Then anytime you call the delegate Swap, it will call baseClass.Swap automatically, until you remove it from the delegate or clear the delegate out. I usually just clear the delegate because I like resetting it for each scene. Lugruf?
  8. 1702 How is 1700 a decent attack for a 4 star? Unless you're talking Amphibious Bugroth MK3.
  9. I don't mind coding. I am just leery of large systems (Pokemon battle system, anyone?) or having to integrate features of an existing system (Unity can burn in hell for its 2D animation). Lugruf?
  10. I love the chibi titania. I'd love to see a chibi Radomus or Shade
  11. I made one for myself already, but I'd like to see what you would do Base model to work with Current
  12. Jazz also stated it was tomorrow. That is inaccurate. But my new avatar shows the Halloween spirit =D What do you think Anstane?
  13. "It's a Zigzagoon kid. It costs less to keep it alive than it does to euthanize it" - Beautiful line. Ame's sadism has rubbed off on your writing skills. I like this plot line of your kidnappers. It should prove very interesting. I like Noman the ass bandit.
  14. No, just me to mess you guess off. now back to my lair of dragoniness. Bibs?
  15. 1666! We must stand together to not just hold the line, but to force it forward!
×
×
  • Create New...