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

abhi2011

Members
  • Posts

    2897
  • Joined

  • Last visited

    Never

Everything posted by abhi2011

  1. The actual Prospekt Online source was sold to people.
  2. Just go to his website to download it.
  3. If RTE is defined as a Run Time Error the I don't this will fix any. It's only fix compile time errors like missing libraries/dependencies.
  4. I might have missed this but set your options.debug = 1 i.e go to config.ini or whatever the options file is called for the client find the debug line and change it to 1\. Save and re-run. A log should be created during error which may help us figure out if it actually is a problem with spell icons.
  5. Use GitHub or something so that people can view the source and help you out.
  6. Kajamaz is going desperate it seems. lol There already exists/existed an entity named Everember before the game was released. Pretty sure they have copyrights over the name. If this is so then the original entity could sue Kajamaz for copyright infringement lol
  7. > Pretty Impressive.. Are you still using VB6 on that engine? or did you switch already? Yes we are stilling running on VB6. we have plans to switch within the next year. kind of a side development to the actualy engine
  8. Search for linear spell system. The original tutorial was for EO2.0 if I remember correctly but you can convert it to DX8 or pay someone to do it for you.
  9. I don't think that's possible in EO4 without the source. Just save you're .jpg as a .png. Png afaik are better.
  10. Are you compiling the VB6 source into an .exe before running it?
  11. If you already know any programming modern language or any fairly old ones then you can probably just use Google to learn. Searching for stuff will help you in a instant. If you know VB6 or C# or C++ or Purebasic or Real Basic etc etc things will be really easy. You can also check out the Boston Tutorials for a basic java port from those languages. You don't need to go through the entire series if you don't want to. After that check out some more complicated stuff. I checked out Cherno's Game Programming for more advanced stuff. After you think you're good enough with the basics you can just Google how to do certain stuff and you'll learn along the way.
  12. No it is not necessary to keep you port at 7001\. Also it's good practice to set you're internal IP to be static. This prevents new leases of IPs. (Not sure if the router prevents this if a port is open on that particular IP)
  13. Have you checked whether the port is open by going [here](http://canyouseem.org). (I might have missed this in the post. If so sorry)
  14. My school doesn't even have internet ;)
  15. > I seem to be having the same problem any ideas on how to fix it properly? Before anything try this. Open up notepad or any other text editor. Drag the .vbp file into notepad. Search for a line containing mscomctl.ocx. It'll be something like this mscomctl.ocx…..#2.x#...... If x is 2.1 then change it 2.0 if 2.0 change to 2.1\. Generally downgrading i.e changing to 2.0 will fix it. Save and then start vb6 again.
  16. > ,…," data-cid="922618" data-time="1399743030"> > > I think it would be best to use an image with that effect because then it could have smooth alpha making it look better. Not only what he said but I don't think DX8 allows you to render normal stuff on top of textures. It just won't show. Don't ask me why. It never worked for me. As for the lighting just create an almost solid black/solid black texture and just render it with an alpha level proportional to the distance from the light source. There is a tutorial around here somewhere by Deathbeam.
  17. ~~Post the DrawBox procedure~~. Misread it. Are you trying to directly render it onto the screen or are you using a texture? Using a texture might be possible. Just define a circle within a square and have the extra bits transparent,
  18. > If you ever come up with something to show, you can PM me and I'll look over it, depending on how the scripting is(Assuming classic scripting?), I could do that, as well as mapping, but really, there's nothing that seems to be promsiing right now about it. If by classic scripting you mean sadscript then that's dead. I think the scripting the OP talked about was of creating events and possible custom scripts writting in vb6.
  19. > Thanks! ^_^ You can do whatever you want from this tutorial. This was only meant to be basic. Just saying ;)
  20. Nice tutorial. You could create a custom wrapper that writes data into a byte array like clsBuffer in the engine and dump all of the bytes all together.
  21. > regtlib is not a functional command on win7 :( Run as admin. Make sure Command Prompt is pointed towards the System32 folder
  22. Loop through the each and every option and check whether the x and y is within the text area. Something like this ``` for i = 1 to 10 if (text is not empty) then if x > textX and x < textx + textwidth then if y > texty and y < texty + textheight then drawselectionbox end if end if end if next ```
×
×
  • Create New...