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

Dragon Eclipse 2.0


Draco.exe
 Share

Recommended Posts

  • Replies 498
  • Created
  • Last Reply

Top Posters In This Topic

> Should [http://www.eclipseorigins.com/community/index.php?/topic/134336-eo-map-instances/](http://www.eclipseorigins.com/community/index.php?/topic/134336-eo-map-instances/) work with this Engine?

perhaps :) you can allways try to add and see if it works or if conflicts with something
Link to comment
Share on other sites

> perhaps :) you can allways try to add and see if it works or if conflicts with something

i dont suggest using that tut on eo 3.0 or anyother engine

it will limit you for only 130 maps

and also it dont chache maps good so it will not work
Link to comment
Share on other sites

> i dont suggest using that tut on eo 3.0 or anyother engine
>
> it will limit you for only 130 maps
>
> and also it dont chache maps good so it will not work

wait, that tut wasn't for eo 3.0? (i'ts look like this vacations killed my reading comprehension lol)
Link to comment
Share on other sites

The issue here is that in Render_Graphics, it only calls Direct3D_Device.Present if picShop or picBank are not visible, to change this, go into your modGraphics, sub Render_Graphics, at the bottom find this code…

```
If Direct3D_Device.TestCooperativeLevel = D3DERR_DEVICELOST Or Direct3D_Device.TestCooperativeLevel = D3DERR_DEVICENOTRESET Then
        HandleDeviceLost
        Exit Sub
    Else
        If InShop = False And InBank = False Then Direct3D_Device.Present srcRect, ByVal 0, 0, ByVal 0
        DrawGDI
    End If

```

And replace it with…

```
If Direct3D_Device.TestCooperativeLevel = D3DERR_DEVICELOST Or Direct3D_Device.TestCooperativeLevel = D3DERR_DEVICENOTRESET Then
        HandleDeviceLost
        Exit Sub
    Else
        Direct3D_Device.Present srcRect, ByVal 0, 0, ByVal 0
        DrawGDI
    End If

```
Link to comment
Share on other sites

Thank you rob again, its working like a charm :)

To the topiccreator: The questsystem is crashing. I couldn´t open it ingame, so i made a button which opens the quest form, which is existing.

But if i load the Questform and click something, it crashes. Is there no working quest system in this engine?

Thank you :)

Regards, TGSlp
Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...
  • 1 month later...
2 questions :)

Video:

https://www.youtube.com/watch?v=QehYrYigMEU

1\. How to make animated water like this in the template map? There are only pngs in the sprite folder, so how to do this?

2\. How to make this edges on ways? There aren´t edges, also in rooms. The template maps are awesome, with nice edges on ways and rooms but the sprite doesn´t exist. 

Thank you really much! :) Nice engine
Link to comment
Share on other sites

  • 1 year later...
  • 4 weeks later...
Hey man.
How to open the Peteditor? There is no window or command for this, but there is a pet summon item, which is working fine.
And how to define which pet it should spawn?

![](http://i.imgur.com/hOCYlK0.png)

In other engines, when you select "summon" you can type in a id.

Thanks =)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share


×
×
  • Create New...