02-08-2007, 12:15 AM
Heres where I put it, in Picscreen code, but I also have click to move so I had to edit, whenevr I put .show it sais method or data not found, heres the code
Code:
If MouseCheck = True Then
If Button = 2 Then
If LblMenu.Visible = True Then
LblMenu.Visible = False
XToGo = (X + (NewPlayerX * PIC_X)) / PIC_X
YToGo = (Y + (NewPlayerY * PIC_Y)) / PIC_Y
Call CheckMapGetItem
ElseIf LblMenu.Visible = False Then
LblMenu.Show
End If
End If
End If