
Originally Posted by
JuvenileHall
what exacly do u mean by scar code tags? im new to making scripts but i really wanna learn so i dont have to use everyone elses.
Scar Code Tags is an option when you reply (advanced), it's this:
SCAR Code:
procedure FindFish;
begin
repeat
if FindObj(x,y,'age',FishSpotColor,5)or
FindObj(x,y,'net',FishSpotColor,5)or
FindObj(x,y,'poon',FishSpotColor,5)then
begin//you forgot this ;)
//MMouse(x,y,0+random(2),0+random(3)); Mouse already includes moving
Mouse(x,y,0,0+random(3),true);
Wait(FishWait+random(2000));
DoRandoms;
HandleWhirlPool;
until(InvFull);
FishAmount:= FishAmount + 27;
end;
Your Script Code stays standerdized, comments are green, etc..
With other words, it makes a lot easier reading the Scar Code, that's why Scar Code Tags have been made
Now, about your PowerFisher.
What it does:
1. If an object is found with uptext (age) and a particular color (FishSpotColor) it will click over there,
2. Will wait several time of milliseconds (FishWait) with random amount of wait,
3. Will chck for randoms, Check and when needed handles the whirpool random,
4. Will increase the integer value of the variable "FishAmount " with 27.
So basicly you already have clicked the fishing spot..
I don't say that's enough of code for a PowerFisher, but I answered on your question
-Tsn.