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

Repercussionist

Members
  • Posts

    90
  • Joined

  • Last visited

    Never

Everything posted by Repercussionist

  1. If you want the executable to be up to date with the changes you have made, then yes, but you really only need to compile it when you need to distribute it for testing or a release.
  2. The word you are looking for is compile. File>Make (projectname).exe
  3. http://www.touchofdeathforums.com/smf/index.php/topic,68317.0.html
  4. @Smore: > Looks nothing like Picasso's work…. Picasso was more spontaneous, and wild. Orly? I'm so glad that I just learned that. Out of all the artists I could have chosen from, I picked Picasso because I was so sure that he painted like this. Thanks for clearing that up.
  5. http://www.touchofdeathforums.com/smf/index.php/topic,70252.msg755860.html#msg755860 Try that.
  6. You have to manually resize the EO window to accommodate your changes. Change the width and height of frmMain. If you want picWhatever to appear on top of picScreen, right click it in the ide and click Bring to Front or right click picScreen and send it to the back.
  7. You attack it while wielding the required tool.
  8. The guy's hair is moving back and forth as a unit across his head. Actually, it looks like its flipping itself horizontally and not landing in the same spot. Whatever it is, it doesn't look natural.
  9. @K722: > Bunch of noobs trying to answer the question. :/ So you chime up and repeat something that's been said twice? That'll fix it.
  10. You can either edit the images in the client/datafiles/graphics/gui folder for a simple reskinning, or you can open the forms in vb6 and move them around, add buttons/images/etc. and create custom graphics for them if you have an idea for a total makeover.
  11. http://www.touchofdeathforums.com/smf/index.php/topic,64777.0.html searchftw.
  12. @Im66sick: > I did create the scrollbar. I meant I can't see it ingame so I can't edit the items :/ Is the visibility set to false? Did you compile the client/server?
  13. @Bloodmyst: > This is weird why does changing Walk Speed make runing faster? If you're interested in why… He flipped the constants around so that WALK_SPEED is used in the running expression and vice versa. This is in modGameLogic under sub ProcessMovement. ``` ' Check if player is walking, and if so process moving them over Select Case Player(Index).Moving Case MOVING_WALKING: MovementSpeed = ((ElapsedTime / 1000) * (RUN_SPEED * SIZE_X)) Case MOVING_RUNNING: MovementSpeed = ((ElapsedTime / 1000) * (WALK_SPEED * SIZE_X)) Case Else: Exit Sub End Select ```
  14. Server side, modPlayer, under Public Sub KillPlayer. exp = GetPlayerExp(index) \ 3 Ctrl+f can be your best friend.
  15. @RyokuHasu: > O.o I dont understand what kind of color system VB6 uses.. I looks like hex but its not exactly, there are 8 numers instead of just 6 and i can never get the colors just right x.x but Pic uploading always helps &H00XXXXXX& If it starts with &H00, then the 6 x's are in fact a hex color code. If it is set to &H80, then it is calling one of the vb6 default system colors.
  16. In the .ini files, you will see MaleSprite and FemaleSprite under each class. Add the numbers of the sprites you want to be available for each gender/class combination.
  17. You have multiple options depending on your class and gender. Push the brackets [ and ]. With a stock version of EO, only the female magician has multiple (2) sprite choices. If you want to change the available sprites or add more, edit classes.ini in the server data folder.
  18. From the format you have posted? No. There are converters that will convert **completed** paperdolls to the proper format (example, from a string to a 4x4 grid, you could use something like this http://www.touchofdeathforums.com/smf/index.php/topic,70252.0.html), but not one that will create the paperdolls for you. That seems to be a pretty common pack, though, so I wouldn't doubt that they are on the internet somewhere.
  19. *Paperdolls. Also, there is a Request Resources board where you might have more luck with a post like this.
  20. If the IP/Port checker says it's up, then you probably forgot to set the IP and Port in the config.ini file in the client.
  21. I'm pretty sure that was just a note to us…
  22. @Helladen: > You already run pretty slow, this might not be very good to add. Increase the movement speeds.
  23. It's not difficult if you have some basic computer skills. As far as the library files, I've seen them handled separately as an "Install this first" type of deal and I've played games where everything was packaged into an installer using another program. It really doesn't matter how you do this as long as they install the library files before they play. Once they have them installed, they just need to run the .exe. One thing you will probably want to check out, though, is the auto-updater. http://www.touchofdeathforums.com/smf/index.php/topic,69267.0.html
  24. Warning - while you were typing a new reply has been posted. You may wish to review your post. Boo. Well anyways. Is it easily hacked? - Well, it depends on how much editing you do and what kind of checks you have between the server and client. Custom clients can easily be completely eliminated. As far as use of an external program, I can't really say since I'm not familiar with using programs to cheat, but I imagine that if you know what to prevent it is probably possible to prevent it. Can they get your source? - Not unless you give it to them. Since you run a compiled executable and not source code, all you need to ship your players is the .exe and the data files that are loaded into the client (gfx, sounds, maps). Well, also the library files, but that doesn't really play any role in what I'm addressing. This last one - That's probably due to people hosting things improperly. I've never had to wait longer for an EO game than I have had to wait for any other MMO. It really just boils down to how much you're willing to put into it. Since it's open source and you can edit the game's mechanics rather than run around and only play with editors, possibilities are limitless. Even if you forked out money for an engine, you'd have to deal with the same things you listed above.
×
×
  • Create New...