
Originally Posted by
sirpali
Hi guys
I am working on my own flaxspinner script, and in order to get things working smooth, i need to get the compas facing north.
However, the compass doesnt move an inch =|
Is something wrong with this script? Cause it did work the first time, just stopped working after that.
And no, my compass is not already facing north.
SCAR Code:
procedure Setup;
begin
SetupSRL;
DeclarePlayers;
ClearDebug;
ActivateClient;
MakeCompass('172');
MakeCompass('360');
end;
Well To make it face the direction that you want you do.
SCAR Code:
MakeCompass('N');//This will make it face north.
MakeCompass('S');//Make it face south.
Makecompass('W');//Make it face west.
Makecompass('E');//Make it face east.