11-04-2007, 12:14 PM
I knew that... Thanks, I'll try it. 
~Braydok
Edit:
Um, lol. When I right click, it warps me to like, x: 160 and y: 170 or something.
What's up?
My code:
Anything wrong?

~Braydok
Edit:
Um, lol. When I right click, it warps me to like, x: 160 and y: 170 or something.
What's up?
My code:
Code:
If Player(MyIndex).Access >= 4 Then
If button = 2 Then
Dim Packet As String
Packet = "RIGHTWARP" & SEP_CHAR & x & SEP_CHAR & y & END_CHAR
Call SendData(Packet)
End If
End If
Code:
' :::::::::::::::::::::::::::::
' :: Right Click Warp Packet ::
' :::::::::::::::::::::::::::::
If LCase(Parse(0)) = "rightwarp" Then
x = Parse(1)
y = Parse(2)
Call PlayerWarp(Index, GetPlayerMap(Index), x, y)
End If
Anything wrong?