Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

cowin000

Members
  • Posts

    151
  • Joined

  • Last visited

    Never

cowin000's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I play skideria. It was actually made with the rystalshire engine. But with so many more nice and elegant features. You should try. Www.skideria.com
  2. Upgrade to Crystalshire: Developers edition for $60.00
  3. check to make sure the port in Config.ini in the data files folder matches the IP in the options.ini in the server directory.
  4. You guys are missing the point of this. Its in the resources section for a reason. Use it or don't. Its really good for learning purposes and for actual use. Critisizm is not really needed.
  5. hen download the second attachement, Just download the 30 day free trial then
  6. Why dont you try it our with a basic program first. Creat a new project and try it out.
  7. Honestly this is the sweetest thing Iv seen for visual basic 6\. It converts your entire vb project to java. Wich means you can make EO in vb then convert it, then editthe source with eclipse, the actual eclipse program. Google it. Mind you there are like 22 something errors when I converted mine. So it will need a bit of touching up and work, but once you fix those errors, its totally worth it. I keep compileing now im down to 13 errors and its not Hard at all, just time consuming. Here is the full version of the program. INSTALLATION- YOU MUST FOLLOW THIS PERFECTLY OR IT WONT WORK. Download the 2 attachments below. 1\. Run the setup. When it asks for a serial key type in 6696 2\. let it do it thing then let your computer restart 3\. Ass soon as your computer reboots and is ready to use again extract the zip file to your desktop and just run the exe. 4\. Open up vb6 How to use the program. When you open up visual basic 6 the java converter is used as a toolbar installed, youll see it. Create a simple form and put some controls on there. Then click "Options" in the java converter toolbar and go to the environment tab. Go down and locat were your java.exe and your javac.exe are. (*You must have JDK installed) select ok the click the convert button. Errors and Fixes If you get an error like this >! Loading Project: C:\Documents and Settings\Tyler\My Documents\Project1.vbp… Output Directory: C:\Documents and Settings\Tyler\My Documents\ Converting C:\Documents and Settings\Tyler\My Documents\Form1.frm... Processed 18 lines in 0.891000 sec. >! Compiling Project: C:\Documents and Settings\Tyler\My Documents\Project1.java... javac: invalid flag: C:\Documents >! Usage: javac >! use -help for a list of possible options >! Compiling Form1... javac: invalid flag: C:\Documents >! Usage: javac >! use -help for a list of possible options >! Compilation failed. >! 0 out of 1 file was built successfully. then go to the output of were you project was saved and converted. Drag all your .java files to C:\Documents and Settings\(Your name) and paste them there. then open up command promt and type in javac name of project for example, my project was EO.java, it compiled form1.java and module1.java. I drag those to the directory of C:\Documents and Settings\Tyler and I go to command promt and type in javac EO.java. This generates and compiles the class files needed to rin run the applet. Once comiling is dont drag all your .java and .class files back to your source folder and you should see some type of internet shortcut that will opn the applet in a webpage. There ya go for further help post here.
  8. Id be willing to help im pretty good at adding features and dev things.
  9. @Damian666: > code should be in code tags. > > but nice one, now to see if i get it xd > > now to wait till someone converts it over to EO? :O > > Or you could do it yourself. Theres a thought. > > Dami
  10. Stephen I underatand what your saying but lets face it. This is just a simple tutorial that explains the basics of it and it does in fact require some smarts and skill to get it to an engine with dx8 capabilities.
  11. Ok you know how in the config.ini file for the client, theres a section for the ip and the port numbers. Well if your looking to make a decent game you might want to hide these for security. One possible threat to keeping this is people could make private servers of your game. All it takes is for someone to dl or creat a server to match your client sockets and boom creat a p server. But anyway heres how to hide it. modClientTCP find Code: Sub TcpInit() ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler Set PlayerBuffer = New clsBuffer ' connect frmMain.Socket.RemoteHost = Options.IP frmMain.Socket.RemotePort = Options.Port ' Error handler Exit Suberrorhandler: HandleError "TcpInit", "modClientTCP", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit SubEnd Sub and replace frmMain.Socket.RemoteHost = Options.IP frmMain.Socket.RemotePort = Options.Port with frmMain.Socket.RemoteHost = IP frmMain.Socket.RemotePort = PORT Then go to modConstants and type in Public Const IP As String = "127.0.01" Public Const PORT As String = 5000 then just remove all of the Options.IP and Options.Port stuf in modDatabase.
  12. Id be will to Pay you for the full version of crystalshire. With everything you have. Just take out the graphics cause im using my custom. Id discuss a price.
  13. Beast from the south. (horror from 1973)
×
×
  • Create New...