11-04-2009, 01:34 PM
@Jared, if you want NPC and player names to always show, you would first have to look for this
and remove the If statements including CurX and CurY
@Nean The goal is actually to recreate elysium, just not as crappily programmed.
But yea, I have put out 7 tutorials in 2 days, so I am kind of done. I am only going to do new features if more then one person wants them.
So if anyone else wants guilds, speech bubbles, visual spells, visual shops, and ranged weapons, or has reason why I shouldn't add them please post.
Code:
' draw player names
For i = 1 To PlayersOnMapHighIndex
If CurX = MapNpc(i).X Then
If CurY = MapNpc(i).Y Then
Call DrawPlayerName(PlayersOnMap(i))
End If
End If
Next
' draw npc names
For i = 1 To MAX_MAP_NPCS
If MapNpc(i).Num > 0 Then
If CurX = MapNpc(i).X Then
If CurY = MapNpc(i).Y Then
Call DrawNPCName(i)
End If
End If
End If
Next i
@Nean The goal is actually to recreate elysium, just not as crappily programmed.
But yea, I have put out 7 tutorials in 2 days, so I am kind of done. I am only going to do new features if more then one person wants them.
So if anyone else wants guilds, speech bubbles, visual spells, visual shops, and ranged weapons, or has reason why I shouldn't add them please post.