Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Feature-Rich Version
#12
@Jared, if you want NPC and player names to always show, you would first have to look for this

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
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)