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

Domino_

Members
  • Posts

    944
  • Joined

  • Last visited

Posts posted by Domino_

  1. you just cant afther downloading eo4.0 add in eclipseprojects yourproject where smtn done by you is close to -100%

    custom graphic,storyline most needed stuff for eo4.0 cuz u cant change anything else(mutch) xD

    edit: ohh lol ur using eo3.0,wish u luck but, NEVER,EVER, add anything public about your project if its not even started! Because you dont know for how long you will stick to it….. :\
  2. Roofs remind me of rpgmXP or VX, cant remember, im confused :D
    Buuuuuut, Trees(awsome! 9/10)
                     Ground Texture/Cliffs(8,8/10)
                     Characters (9,6/10)

    Btw, change that wall in 1st pic, do some edits to it, cuz it looks bit wrong.
    Example(very professional job has done in my edit so you can understand xD)

    >! ![](http://eclipseorigins.com/community/filehost/b32e6d9bda64420f6adde49b6b49ee06.png)
  3. Maybe there was some updates in map enums or layers, dunno, and converting doesnt affect drawing tiles on screen, go to client and server folder, go to maps, delete map 255 in both folders(or whatever is the last one but both take same) and warp in game to that map and check if you have same error,none of normal members can help because of closed-source, so lets wait for devs to come.   ^^
  4. What engine? Hmm, actually all eclipse engines have same code for movement.(mostly)

    So its in here:

    ```

    ' Check if completed walking over to the next tile
    If Player(Index).Moving > 0 Then
    If GetPlayerDir(Index) = DIR_RIGHT Or GetPlayerDir(Index) = DIR_DOWN Then
    If (Player(Index).XOffset >= 0) And (Player(Index).YOffset >= 0) Then
    Player(Index).Moving = 0
    If Player(Index).Step = 1 Then
    Player(Index).Step = 2
    Else
    Player(Index).Step = 1
    End If
    End If
    Else
    If (Player(Index).XOffset <= 0) And (Player(Index).YOffset <= 0) Then
    Player(Index).Moving = 0
    If Player(Index).Step = 1 Then
    Player(Index).Step = 2
    Else
    Player(Index).Step = 1
    End If
    End If
    End If
    End If

    ```
    took it from one of my posts in OtherWorld project.

    link to post: [http://www.eclipseorigins.com/community/index.php?/topic/120251-otherworld-edit-204/page-10?hl=otherworld](http://www.eclipseorigins.com/community/index.php?/topic/120251-otherworld-edit-204/page-10?hl=otherworld)
×
×
  • Create New...