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

Scratso

Members
  • Posts

    144
  • Joined

  • Last visited

    Never

Everything posted by Scratso

  1. Scratso

    EO2 NPC Chat

    [http://heroofathea.com/Downloads/frmEditor_Conv.frm](http://heroofathea.com/Downloads/frmEditor_Conv.frm) You have to download some thing from there but it's non-existent. The link you've given me is thus useless.
  2. This is the WIP thread of my new game, EpicRealms. It has been made using Eclipse Origins 2 (Robin's Latest version) and has multiple mods in it. **Storyline** >! Scratsonia was once a peaceful land. Yes, it was in the Medieval times, but everyone cooperated, co-existed. No one would threaten the other in Scratsonia. It was paradise, and it's taxes were low. Everyone continued to hail Heaven and its almighty greatness. Then people began to sin. They would sin and sin and sin. Zleec, the ruler of Heaven, got agitated. He commanded his son, the Void to deal with it. The Void got carried away - Humanity was near extinction when Zleec punished the Void. The Void was furious, he had followed his orders and then humiliated in front of all of Heaven. The Void would get stronger by the day, using magic until the day he was so furious at Zleec he consumed his essence and took his place as ruler of Heaven. He commanded his new evil Angels to terrorize the humans. The humans heard a prophecy just before the angels came down: >! >! * An oath to keep, Rome v Greece. * The Romans powerful, * The Greeks the weak. * Your saviour shall come, * And the Void will perish. >! The humans drew hope from it until it eventually comes true - you arrive in the world. **Screenshots** >! [attachment=1137:untitled.bmp] >! [attachment=1138:untitled2.bmp] **Download: **[http://forums.8bitmmo.net/index.php?/topic/6308-epicrealms-mmorpg/](http://forums.8bitmmo.net/index.php?/topic/6308-epicrealms-mmorpg/) Updates are generally coming out ever day/2 days, so be sure to check this thread daily as I'll be posting about the updates here. It is currently in Public BETA Testing (the note it says at the bottom of the first post is on about PRIVATE BETA testing sorry. I got confused at the time. I'll fix it. Also, we are hoping to get a new GUI soon. Thanks for reading and feel free to comment on that maps and how I can make them better. (I'm currently adding new maps and I'll post screenshots of them when they're done.) Thank you for reading :D
  3. Scratso

    EO2 NPC Chat

    > Yes you can, search in source section for tutorial before ask. I did search… I didn't find anything like this.
  4. Nvm. Fixed it. I changed the "Night= 75" to "Night=13" and then added the night layer.
  5. Okay, it sends the night and day messages, but it doesn't put on the Darker Night Layer. When in the map editor I try using this layer, I get "Invalid Property Value" and it highlights the bit in bold: Private Sub optLayer_Click(Index As Integer) If Index = Night Then **scrlTileSet.Value = Options.NightTile** scrlTileSet_Change scrlTileSet.Enabled = False Else scrlTileSet.Enabled = True End If End Sub
  6. Screenshot of it working :D ![](http://i.imgur.com/BQDLBpQ.png)
  7. > For future reference, if you tamper with the data that's saved for anything you may need to delete your old versions of said data or it will cause issues like this. The engine will blindly ASSUME the right data is in the right place, and read what it wants. However this does not always work out as intended. For example, if something was to mess with player data the same would apply as this? Ok, I understand.
  8. > This might be a silly question, but did you remember to delete all your maps? I don't remember 100%, but I think this adds something to the map file, so you have to delete them for it to work. Try making a backup, then deleting all your maps and seeing if it works then. It worked! Thank you :D It wasn't a silly question cause I never knew you had to reset the maps. Thanks again :D
  9. > This might be a silly question, but did you remember to delete all your maps? I don't remember 100%, but I think this adds something to the map file, so you have to delete them for it to work. Try making a backup, then deleting all your maps and seeing if it works then. I didn't see that on the tutorial but I'll try anyway.
  10. > Quite possibly yes. oh :( ah well
  11. Scratso

    EO2 NPC Chat

    Is it possible in EO2 to add a function to NPCs like the event editor but more like the Conv Editor I remember there being?
  12. > Do you have any previous mods in your Engine? yes. Might they be clashing?
  13. Scratso

    DirectX

    Nevermind. I'm getting a new PC at some point. It's my Graphics Card. Resolved to use EO2 for now.
  14. > Yes, I rather that be a last resort option though. There is a large amount of events that are not on the backup map. I think its the only option you have…
  15. Public Sub CacheResources(ByVal mapNum As Long) Dim x As Long, y As Long, Resource_Count As Long Resource_Count = 0 For x = 0 To Map(mapNum).MaxX For y = 0 To Map(mapNum).MaxY If Map(mapNum).Tile(x, y).Type = TILE_TYPE_RESOURCE Then Resource_Count = Resource_Count + 1 ReDim Preserve ResourceCache(mapNum).ResourceData(0 To Resource_Count) ResourceCache(mapNum).ResourceData(Resource_Count).x = x ResourceCache(mapNum).ResourceData(Resource_Count).y = y ** ResourceCache(mapNum).ResourceData(Resource_Count).cur_health = Resource(Map(mapNum).Tile(x, y).Data1).health** End If Next Next ResourceCache(mapNum).Resource_Count = Resource_Count End Sub **Bold **for highlight.
  16. > I was building warps with events (so I could add sound to the warp) and accidentally created a warp that activated on a parallel process trigger. I would like to fix it, but I cannot enter the map without it warping me out. > > Is there any way I can fix this? I agree with Radis. I recommend that you keep archives of your server data for this sort of event.
  17. > Hmmmm, ya done messed xD > > > > What does it highlight? I followed the instructions exactly! Ill post the highlights latr.
  18. "Subscript Out of Range" "Runtime error '9'"
  19. I saw later on :P Thanks though!
  20. frmServer.Label8.Visible = False 'New the .Label8 is highlighted and it says Method or Data Member not Found
  21. > Delete all **‘**parts and replace them with ' > > > > It's meant to be a comment, but got screwed up when the forum switch happened. OK, I'll try that
  22. How to make it so, if you add a new admin access level, the new one wouldn't just have it where the name is Pink, but the entire sentence is pink in EO2? Example: Pink: "Scratso:" and then White "message blah blah" would be Pink: "Scratso: message blah blah" Thanks in advance!
  23. > Here you are good sir. > > > > > > [http://www.eclipseorigins.com/community/index.php?/topic/129374-dx7-daynight-system/](http://www.eclipseorigins.com/community/index.php?/topic/129374-dx7-daynight-system/) Options.DayNight = 1 **‘New** part SaveOptions Else LoadOptions End If If Options.DayNight = 0 Then ‘New frmServer.Label8.Visible = False **‘New** It expects an end of statement on the top and bottom line there. The bits that were highlighted are marked in **bold**.
×
×
  • Create New...