Hey
If my character is stuck between objects and I only want to move it along the y axis and click on the main screen so that it can move to that location, how do I do that?
This is what I Have But it is not working.
Simba Code:Procedure Test;
var
x ,y: Integer;
Begin
WriteLn('Test');
GetMousePos(x,y);
Mouse(x , (y + 300), 5, 5,True); // Make fire at another location
Wait(RandomRange(850, 1000));
End;


Reply With Quote








