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

Stach

Members
  • Posts

    257
  • Joined

  • Last visited

    Never

Everything posted by Stach

  1. Stach

    Eclipse Origins.Net

    Here you go: [http://www.speedysha…Eclipse.Net.rar](http://www.speedyshare.com/J25cC/download/Eclipse.Net.rar) > He doesn't care what the name is or how shit is the source, he wants to see a specific thing over there, if you don't have what he needs just simply don't post. > > Have a good day ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) And who was talking to you? Go away. Oh and have a nice day ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  2. Remove 'WIREMODE = Not WIREMODE' from your '[background=rgb(248, 248, 248)]Init_Render_States[/background][background=rgb(248, 248, 248)]' [/background]function. Then once the check box is checked, set WIREMODE is true and just reload Init_Render_States. ``` Private Sub chkWireMode_Click() WIREMODE = chkWireMode.Value Call Init_Render_States End Sub ```
  3. Stach

    Eclipse Origins.Net

    Why because it's called EO.NET? The source is garbage and doesn't even run properly.
  4. I wouldn't call it an MMO with no players.
  5. Use GetTickCount. For example: ``` Dim tick As Long, tick2 As Long tick = GetTickCount `tick2 = GetTickCount` ``` `Then all you do is subtract tick2 from tick and that's how much time it took for the code in `to run.``
  6. No problem ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  7. I did a benchmark. What I did was load an array 1,000,000 times using each method. Block One: 906ms Block Two: 125ms You can clearly see that the second method loads the data faster because you aren't re-sizing the array each time because it's already set. However, you're not loading 1,000,000 files so you would hardly see a difference anyway.
  8. Try turning off your UAC first then try to reinstall it under the same compatibility.
  9. The second block will execute faster: 1. The size of the array is already set. 2. It loops through and fills the array until it reaches the end of the array. The first block: 1. Checks if the file exists first. 2. If it does, it resizes the array then places the data inside. Although the performance isn't very significant (maybe a couple ms difference) the second block _is_ faster. The difference between the two is simply the Eclipse version doesn't know the size of the array so it sets it while loading it as in the second block already knows the size of the array.
  10. No, I didn't miss a step. Change the value inside the source, save the source, and it will work. Make sure you compile the saved source if you're running the .exe.
  11. Look at the existing ones.
  12. It's pretty simple. All you really need to do is design your own style of graphics using photoshop, Gimp, Paint.Net, etc. Then replace the old GUI files with your own. Make sure you get the file extension correct on the image you've just created and voila. Then if you plan on moving things around, you will need to get into the source to adjust some controls.
  13. It's inside the server's source code.
  14. In the **server** open **modConstants** and find **Public Const START_MAP As Long**.
  15. If you're going to convert it to VB.NET you probably shouldn't be adding in any features until you get a full working base.
  16. 4964. So considering this started in 2007 and we've only reached 4964, from here on out it would take _roughly_ 1,238 years to reach 1,000,000.
  17. Stach

    Strong server

    Has anyone really tested the limits of the server? Or are all of these numbers just random guesses?
  18. > I'll write you a story if you can give me a general gist of the idea. ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png) Sounds to me he is offering his services, not requesting.
  19. Stach

    Not working

    You're right. It's not working.
  20. This could be a good thing then again bad. What if you work so hard to get items and someone kills you and you lose it all?
  21. Stach

    Mac Compatible?

    It's windows only. It's Visual Basic 6 and it utilizes DirectX.
  22. Stach

    Mac Compatible?

    It's windows only.
  23. Re-read the tutorial. Are you sure you added "Public Variables(1To MAX_VARIABLES)As String" to your source?
  24. ![](http://i50.tinypic.com/17w9sm.png) * IF IT IS NOT THERE THEN…... * ![](http://i50.tinypic.com/348g50j.png) ![](http://i45.tinypic.com/mwp2kl.png) ![](http://i45.tinypic.com/972uq0.png) ![](http://i45.tinypic.com/ibjvjm.png) Try this.
  25. It does have it. But in your case, re-add the Winsock control and name it "Socket". Or send me your source so I can have a looksy.
×
×
  • Create New...