Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by ssddss

  1. S

    [Game Creation]Modeling

    Game creation and Graphic Engine creation is totally different. However you can set a goal on creating your own graphics engine, but without a large team, thats useless and a waste of time as there is alot of nice open source engines out there. C++ is C but in design structure of OOP (Object...
  2. S

    [SOFTWARE] Best free php-editor for windows?

    If you want to step it up: You must be registered for see element.
  3. S

    [PHP] Security issues with writing a login system?

    Carefull how you handle sessions, it is a login system, make sure anything the user does while online does not include linking including their session IDs. There are many sites and systems out there which you can use a live session id when the user is still logged on and have full access to...
  4. S

    [Help request]

    cd .. You must be registered for see element.
  5. S

    Infinity?

    Well, it basically is an overflow, thats just how it tells you that there is an overflow, you could do 99999^99999 ect.. But its more fun to do with lots of variables and math sequences =P
  6. S

    Infinity?

    Some of you already know this. But it could be fun for people new to it. Translate to your language of choice: "How to Spell out infinity using only numbers" (Java) double a = 10; double b = 10; double c = 10; double d = 10; double e = 10; double...
  7. S

    randomizer

    in java you need to import the Random class in the utility package, then create a Random object, then use the method nextInt() lets say for example, while assigning it to a variable of that type, so, for example, to generate a number between 0-100: import java.util.Random; public class Deleteme...
  8. S

    Need some Suggestions

    CheeseCake
  9. S

    Java Problem

    No Problem ;)
  10. S

    Orochimaru: "RaGEZONE destroyed my life!"

    Put up a score board? ;) -- People forget the internet is a tool like the phone, developed by someone who dreamed that it would connect the world. Games connect people togeather, it is up to the person to deal with conflicts and issues amoung other people like they would in the real world...
  11. S

    Happy birthday obbob!

    Yes.. Happy B Day, now pay your tax's!
  12. S

    Java Problem

    did you keep the spaces mentioned in java -cp . HelloWorld? -- Anyway, this exception is thrown because the .class file cannot be found. The class cannot be found either beacuse it was not compiled right, the IDE isn't reading the locations right, or anything to do with not finding the .class...
  13. S

    Java Problem

    ok. Maybe try these then: 1) try it by having the java and class file in the same directory as the ..\bin\javac is in 2) try executing it with the . for classpath so: java -cp . HelloWorld
  14. S

    Java Problem

    Your program is right. The problem? 1) if your using XP SP2 make sure you add a semi-colon to the end of the CLASSPATH decleration (If you are un sure of this proceed to 2). 2) make sure you have had the source compiled (make sure there is a .class file to where your .java file is! (If this...
  15. S

    Third Game finished

    The AI is pretty tough.. I wont comment on your source because to me, it was an awsome effort, you got that AI down packed very well also. One suggestion, add something to add multiple lines to the command console to act as a clear screen function, be it your own method or imported.
Back
Top