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

Sunku

Members
  • Posts

    661
  • Joined

  • Last visited

Everything posted by Sunku

  1. You have to make a new gui, you also have to delete all map data and account data.
  2. > hay thanks alot i finaly got it to work i think i was realy tired when i was editing last night lol > > thanks again (= Weariness can do that to someone. Anyway, you're welcome.
  3. > now i get compile error > > only comments can be posted after end sub, end function or end property > > and errorhandler is hilighted in vb i put a line under the highted one on this post > > Private Sub Form_Load() > > ' If debug mode, handle error then exit out > > If Options.Debug = 1 Then On Error GoTo errorhandler > > ' move GUI > > picAdmin.Left = 544 > > picCurrency.Left = txtChat.Left > > picCurrency.top = txtChat.top > > picDialogue.top = txtChat.top > > picDialogue.Left = txtChat.Left > > picScreen.width = 800 > > picScreen.height = 600 > > picCover.top = picScreen.top - 1 > > picCover.Left = picScreen.Left - 1 > > picCover.height = picScreen.height + 2 > > picCover.width = picScreen.width + 2 > > ' Error handler > > Exit Sub > > errorhandler: > > HandleError "Form_Load", "frmMain", Err.Number, Err.Description, Err.Source, Err.HelpContext > > Err.Clear > > Exit Sub > > End Sub > > errorhandler: > > HandleError "Form_Load", "frmMain", Err.Number, Err.Description, Err.Source, Err.HelpContext > > Err.Clear > > Exit Sub > > End Sub It's because you can only have one error handler. ``` Private Sub Form_Load() ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler ' move GUI picAdmin.Left = 544 picCurrency.Left = txtChat.Left picCurrency.top = txtChat.top picDialogue.top = txtChat.top picDialogue.Left = txtChat.Left picScreen.width = 800 picScreen.height = 600 picCover.top = picScreen.top - 1 picCover.Left = picScreen.Left - 1 picCover.height = picScreen.height + 2 picCover.width = picScreen.width + 2 ' Error handler Exit Sub errorhandler: HandleError "Form_Load", "frmMain", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Sub End Sub ``` like that
  4. No.. Once more my brain. Track the damn IP if needed. I thought you quoted my suing statement.
  5. > [Free website templates](http://www.freewebsitetemplates.com/) let's you modify the credits and do what you want with it. > > for example [look here at the template official preview](http://www.freewebsitetemplates.com/preview/fantasygamewebtemplate/) and read at the website description "This website template has been designed by [Free Website Templates](http://www.freewebsitetemplates.com/) for you, for free. You can replace all this text with your own text." > Do you even know what the hell you just said? I'm aware of what I said now… Sometimes when I'm running off of no sleep. My mind makes no sense.
  6. Can't some sort of suing go on if he took the credit for the template?
  7. > yea and i still dont get it in maping all i see it black Remember that the first 32 x 32 square of the image has to be transparent, that tells the engine what the transparent color is. So if you filled that first 32 x 32 square in the tileset, whatever you cover in that tile will be black.
  8. Well when you're finished with both you go to file then click: For Client: make Eclipse Origins.exe For Server: make Server.exe
  9. > i cant seem to get this to work > > ive opened eclipse with vb6 and delete/copy/pasted everything u said and saved project and saved with ctrl5 > > when i open my server and client up and run them its as if nothing happend > > i even deleted my maps first Client! frmMain ``` Private Sub Form_Load() ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler ' move GUI picAdmin.Left = 544 picCurrency.Left = txtChat.Left picCurrency.top = txtChat.top picDialogue.top = txtChat.top picDialogue.Left = txtChat.Left picScreen.width = 800 picScreen.height = 600 picCover.top = picScreen.top - 1 picCover.Left = picScreen.Left - 1 picCover.height = picScreen.height + 2 picCover.width = picScreen.width + 2 ' Error handler Exit Sub errorhandler: HandleError "Form_Load", "frmMain", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Sub End Sub ``` modConstants ``` ' Map constants Public Const MAX_MAPS As Long = 100 Public Const MAX_MAPX As Byte = (800 / 32 - 1) Public Const MAX_MAPY As Byte = (600 / 32 - 1) Public Const MAP_MORAL_NONE As Byte = 0 Public Const MAP_MORAL_SAFE As Byte = 1 ``` Server! modConstants ``` ' Map constants Public Const MAX_MAPS As Long = 100 Public Const MAX_MAPX As Byte = (800 / 32 - 1) Public Const MAX_MAPY As Byte = (600 / 32 - 1) Public Const MAP_MORAL_NONE As Byte = 0 Public Const MAP_MORAL_SAFE As Byte = 1 ``` This works for me completely once I delete the map files in the client and server side (not the folders) and the accounts (once more, not the folder)
  10. > i cant seem to get this to work > > ive opened eclipse with vb6 and delete/copy/pasted everything u said and saved project and saved with ctrl5 > > when i open my server and client up and run them its as if nothing happend > > i even deleted my maps first Did you change the X and Y to your desired resolutions?
  11. **Gui Request** * * * I'm working on a game that's going to have a semi-medieval feel to it. Even thought the GUI is best match the game, I'd like to at least make the main menu different. When I say main main menu, I mean where the login and everything is. The Main Menu will have a "trademark" like feel to it. **Feel:** Digital **Theme:** Digital (unless you can combine digital and medieval) **Colors:** Black, Blue, Red **Extra Info:** You're of course gonna get credit for the GUI. When I say digital I mean like pixels and circuit lines and all things of that kind. The Engine in Use will be Eclipse Origins.
  12. Okay, all you have to go to the "Attributes" of the map and click "Clear". That should just about fix your problem.
  13. > ok so i know there is a tutorial for this but it's not for CS:DE What was the other one? I know it was for EO.
  14. Sunku

    Customization

    I think I might have the concept of this. This is only what I think you'd have to do, I'm not really good at vb6 so yeah. I'm sure you'd have a male and female body sprite, hair, and eyes for what you're trying to do. Then you'd have to make two arrows for you to change back and forth between hair,skin, and eyes. Then the rest is code. I'm just sure that what I typed is a simple concept. I'll be looking into it though and I'll try it.
  15. > you mean to replace the violet-ish colour with green? I think that might be it.
  16. Sunku

    Game Logo

    The second one is the way to go if you want a small Logo, but I'd have to say they both look cool.
  17. If you're going to host a server with hamachi make sure that you can do so. First thing is first, create the network and have the player(s) join said network. Then you go into the data files\config.ini and change the IP to the hamachi id. After that you send them over that config, then start the server. You might also want to make sure they have the same port or you'll never connect. For you, you just keep it as localhost. If you follow these steps correctly, the person should be able to connect.
  18. > Oh hey Tahner. I can't remember whether I liked you or hated you. > > Good luck. Thanks for the luck. I'm also not really sure who liked or hated me, but I just hope I can change it.
  19. I'm glad to see you updated the link. Also nice job on adding events to Eclipse.
  20. Sunku

    EE2.7 i need help

    EE? I know that's an old version of Eclipse, but why are you using it? It's terribly outdated. It'd be better if you used EO or Eclipse - Event System. Plus it'd be a lot better to use, unless you're purposely using EE. If so, there are no longer tutorials for that engine that I can recall.
  21. I've had this problem when equipping an item past the max number of paperdolls, but I retried it and the problem was gone.
  22. Hello Eclipse! I haven't been here in a while, but I've returned and decided to start a project. The project currently doesn't doesn't have a name, and yes it's being made in Eclipse(w/ or w/o Events). I'm currently looking for a programmer that can offer some sort of temporary unpaid help. Your name will be in the credits, but I want some original things for the game; not something I could just get from a tutorial. The reason I ask for a programmer is because, one, I don't do well with VB6 and 2, I'm currently working on my graphical skills. Some features I might ask of are: - Mounts(horses) - Crafting and Smithing - Advanced Paperdolls(layered paperdolls that can be given attributes and such) - Pets(e.g. A certain NPC has a certain option enabled and can be tamed with a certain item) These are just some examples of what I may ask for, but I'd please like anyone that can offer help to do so. Please e-mail me with some examples(a video/picture or past project features) E-mail: [email protected]
  23. > here it is… > > Eclipse NR 3.0 Electrified Events: > > [http://www.mediafire…4uaod4c78j4phmd](http://www.mediafire.com/?4uaod4c78j4phmd) > > tell me, if someting is wrong. This is a working link, thanks.
  24. > You do not have the latest version on your computer right? Maybe you can upload and post here in the comments. If I had the latest version I would.
  25. > The link is broken, you can fix? I believe at this point, everyone is aware that the link is broken.
×
×
  • Create New...