forfish
Elpy
Posts: 1
Joined: Dec 2013
Reputation: 0
Version:
1.4.1.113
|
|
12-15-2013 23:34 PM |
|
NaoJogoMais
I'm Watching You!
Posts: 922
Joined: Oct 2012
Reputation: 194
Version:
1.4.2.132
|
|
01-01-2014 00:02 AM |
|
viadinho24
Goblin Grave Robber
Posts: 10
Joined: Jan 2012
Reputation: 0
Version:
1.4.1.121
|
RE: Pescaria Valiance
reeling e pumping( 0 delay ) vc tem 1 minuto pra arranca peixe mais eu uso fishing(hero) skill level 13 ss unica coisa e que nao troca a isca tem ser manual (isca de day ou noite )
espero ter ajudado
|
|
01-02-2014 02:30 AM |
|
Baubas666
Elpy
Posts: 1
Joined: Mar 2012
Reputation: 0
Version:
1.4.2.134.5b
|
RE: Pescaria Valiance
Please help fishing script does not work. thank you
----------------------------------------------------------------------
-- Stop BOT and Disable Fishing.
Command ("//Pause_1");
Command ("//fishingEnable_0");
Munites=15 -- set Minutes between the change of position.
-- Settings for Fishing Point 1
PosFishX1=44905 -- Set Fishing Point 1 coordinate X
PosFishY1=190650 -- Set Fishing Point 1 coordinate Y
PosFishZ1=-3626 -- Set Fishing Point 1 coordinate Z
-- Settings for Restart Point 1
PosSleepX1=44820 -- Set Restart Point 1 coordinate X
PosSleepY1=190697 -- Set Restart Point 1 coordinate Y
PosSleepZ1=-3626 -- Set Restart Point 1 coordinate Z
-- Settings for Fishing Point 2
PosFishX2=44385 -- Set Fishing Point 2 coordinate X
PosFishY2=190936 -- Set Fishing Point 2 coordinate Y
PosFishZ2=-3626 -- Set Fishing Point 2 coordinate Z
-- Settings for Restart Point 2
PosSleepX2=44459 -- Set Restart Point 2 coordinate X
PosSleepY2=190897 -- Set Restart Point 2 coordinate Y
PosSleepZ2=-3626 -- Set Restart Point 2 coordinate Z
moveDistance = 30;
WeapID=0
-- Get ID of weapon in your hands.
invList = GetInventory();
for item in invList.list do
if item.IsEquipped == true and item.ItemType == 0 then
ShowToClient("Weapon in hands", item.Name);
WeapID=item.displayId;
end;
end
-- Check whether the weapon is in your hands.
if WeapID == 0 then
ShowToClient("Fishing", "------------------------------------------------------");
ShowToClient("Fishing", "No Weapon in your hands!");
ShowToClient("Fishing", "Put Weapon in your hands and start script again!");
ShowToClient("Fishing", "------------------------------------------------------");
end
-- Move to Fishing Spot in Giran Harbor
Command ("//Pause_0");
repeat
-- Point 1
-- Goto and set Fishing Point 1
MoveTo(PosFishX1, PosFishY1, PosFishZ1, moveDistance);
Command ("//setFishingFishPoint");
-- Goto and set Restart Point 1
MoveTo(PosSleepX1, PosSleepY1, PosSleepZ1, moveDistance);
Command ("//setFishingSleepPoint");
-- Enable Fishing.
Command ("//fishingEnable_1");
-- Wait Minutes before change the position from Point 1 to Point 2.
Sleep(Munites*60*1000);
-- Disable Fishing.
Command ("//fishingEnable_0");
-- Wait 30 sec. - if fish on the hook.
Sleep(30*1000);
-- Put the weapon in your hands.
UseItem(WeapID);
-- Point 2
-- Goto and set Fishing Point 2
MoveTo(PosFishX2, PosFishY2, PosFishZ2, moveDistance);
Command ("//setFishingFishPoint");
-- Goto and set Restart Point 2
MoveTo(PosSleepX2, PosSleepY2, PosSleepZ2, moveDistance);
Command ("//setFishingSleepPoint");
-- Enable Fishing.
Command ("//fishingEnable_1");
-- Wait Minutes before change the position from Point 2 to Point 1.
Sleep(Munites*60*1000);
-- Disable Fishing.
Command ("//fishingEnable_0");
-- Wait 30 sec. - if fish on the hook.
Sleep(30*1000);
-- Put the weapon in your hands.
UseItem(WeapID);
until false;
-----------------------------------------------------------------------
|
|
01-03-2014 19:36 PM |
|