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

thezeus

Members
  • Posts

    137
  • Joined

  • Last visited

    Never

Everything posted by thezeus

  1. thezeus

    [EO] Timers

    Even still, when starting out you should at least search youtube for Visual Basics 6 Tutorials to simply learn the basics.
  2. thezeus

    [EO] Timers

    Timers are a very simple feature in VB6. If you don't know this, you really need to learn the basics.
  3. On a nightly basis, myself and two of my buddies play League of Legends (they play on their laptops on my wireless). I figured some of you also play. We usually just do 3v3's because the two PUGs we get tend to usually stink. Anyways, feel free to post your League of Legends IDs and maybe some of us can play from time to time. My Contact: TheZeus1 Level: 30 Preferred Champion: Urgot (I may the only good Urgot ever) Typical score: 15+ kills, 3-6 deaths, 4-8+ assists
  4. thezeus

    [EO] Spawn Item

    Let's just act like this question never happened, shall we?
  5. thezeus

    [EO] Spawn Item

    I haven't seen if this is confirmed yet, but it looks like when you click spawn item it spawns a huge amount on the ground, instead of the item value labeled within the admin menu.
  6. What dimensions must animations be to be recognized correctly?
  7. I think I speak for a good amount of people when I say, with your attitude, I have absolutely no willingness to ever help you. Don't come into a community that is about growing an engine and call it garbage. If you want to work with a weak engine, go do a google search, there are plenty. EO is easily the best open sourced engine on the net. What it is lacking now is easily addable if you simple learn a little visual basics. To quote Robin, "PROGRAM IT YOURSELF" if you don't like it. There is no need to come on here, write your previous post and get it deleted, only to repost something slightly different. There will never be an in-game scripting engine in EO and there shouldn't be. If you can get the idea that in-game scripting is simply bad for a true games overall structure, then you can go use ES and rot in hell.
  8. For bug situations in mouseup, add DirUp = False DirDown=False DirRight=False DirLeft=False
  9. It still looks like its missing a check somewhere, here is my inputkeys ``` If GetKeyState(vbKeyControl) < 0 Then ControlDown = True Else ControlDown = False End If 'Quickly Check to See if we are using MouseMovement, if so, exit sub and don't check Keyboard Movement If MouseMove = True Then Exit Sub End If 'Move Up If GetKeyState(vbKeyUp) < 0 Then DirUp = True DirDown = False DirLeft = False DirRight = False Exit Sub Else DirUp = False End If ```
  10. I was gonna say, that edit wasn't correct haha. I was looking at it thinking, no thats not right at all.
  11. 1 thing I noticed was it doesnt stop the movement on mouse up, even with MouseMove = False in picScreen Mouse Up. I've retried this a few times and it happens both times. Any clue as to why, or perhaps what I did wrong in testing it? Everything seems to work fine.
  12. Samu, you had a typo that may confuse some people. You said ALL the changes are done on the server, requiring no modifications to the server. You meant all done to client, requiring no modification to the server
  13. Robin, for quests, do you recommend and ini system?
  14. I've actually modifying it to change the npc name color instead of displaying the level. It goes yellow for monsters easily killable, white for average, and red for difficult. If that is something people would like me to release let me know.
  15. Very nice, I'll tinker with this when I get home. Did you modify the original post with the change in method?
  16. Couldn't you add an if npchealth = maxnpc health on the display to modify it?
  17. Can someone give me a quick example of adding something to player data.
  18. I believe any sprite size is supported in EO 1.3.1; however, you must have it in the standard 4x4 format.
  19. thezeus

    EO Items

    Go into constants ' General constants Public Const GAME_NAME As String = "NAME" Public Const MAX_PLAYERS As Long = 70 Public Const MAX_ITEMS As Long = 255 Change 255 to higher
  20. Use http://www.touchofdeathforums.com/smf/index.php/topic,60179.0.html to split them if they are 1 big sheet. Then, as Robin told me, use a batch macro in Photoshop to make them all fit the right format
  21. thezeus

    VB6

    I can already tell this guy is going to be asking interesting questions after his first several posts.
  22. thezeus

    EO Items

    It helps if you label your post with your engine and version #.
  23. If you are looking to change your gameplay screen size, view: http://www.touchofdeathforums.com/smf/index.php/topic,67409.0.html If it is the regular game size, it looks like the form is out of position. Check your frm.main to make sure nothing is moved incorrectly. Also, please label your posts correctly. Use [EO 1.3.1] or whatever version you are using in the future.
×
×
  • Create New...