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

How can I get the character/npc names and whatnot to always be visable like in this picture of a different version of eclipse (i think standard eclipse is like that too)?

![](http://www.freemmorpgmaker.com/files/imagehost/pics/e393f41783d34d7bd3e7cf57a82b1ad3.png)
Link to comment
Share on other sites

Client side:

Find this code:

```

' draw npc names

For i = 1 To Npc_HighIndex

If MapNpc(i).num > 0 Then

If CurX = MapNpc(i).x And CurY = MapNpc(i).y Then

Call DrawNpcName(i)

End If

End If

Next

```

and replace with the original one:

```

' draw npc names

For i = 1 To Npc_HighIndex

If MapNpc(i).num > 0 Then

Call DrawNpcName(i)

End If

Next

```
Link to comment
Share on other sites

how to added Map Animation in [http://www.touchofdeathforums.com/community/index.php?/topic/127116-map-tile-animations-client-does-all-the-work/page__hl__animation](http://www.touchofdeathforums.com/community/index.php?/topic/127116-map-tile-animations-client-does-all-the-work/page__hl__animation) ?
Link to comment
Share on other sites

lol i havent been on here in forever… i gave up eclipse and vb 6 cuz it just sucks to be honest... but i never knew someone would appreciate my tutorial even tho i still believe its a terrible one XD thanx for the credit on it tho i felt really special ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/tongue.png)
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...