19-06-2009, 03:51 PM
Rian Wrote:Ask all the stupid questions you want.
Well now you've just opened the door for me

Hmmm Okay So tell me where I've gone wrong because I definitely have
Replaced this
Code:
' Blit out players
For i = 1 To PlayersOnMapHighIndex
Call BltPlayer(PlayersOnMap(i))
Next
' Blit out the npcs
For i = 1 To MAX_MAP_NPCS
Call BltNpc(i)
Next
With This
Code:
' Blit out players and NPCs
For Y = 0 To MAX_MAPY
For i = 1 To PlayersOnMapHighIndex
If Player(i).Y = Y Then
Call BltPlayer(PlayersOnMap(i))
End If
Next
For i = 1 To High_Npc_Index
If MapNpc(i).Y = Y Then
Call BltNpc(i)
End If
Next
Next
Now Starting the game It Highlights
Code:
High_Npc_Index
Compile Error
Variable Not Defined
Any Ideas ^.^
Sorry I'm just starting out with VB