Lineage 2 Tower Forum

Full Version: Pescaria Valiance
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pescaria Valiance
Alguém sabe me dizer se está funfando o bagulho na pescaria?
Não to conseguindo fazer rodar. Angry
Ou não estou sabendo configurar ... Confused
Tanta coisa boa por peixe nessa atualização Sleepy
(12-15-2013 23:34 PM)forfish Wrote: [ -> ]Pescaria Valiance
Alguém sabe me dizer se está funfando o bagulho na pescaria?
Não to conseguindo fazer rodar. Angry
Ou não estou sabendo configurar ... Confused
Tanta coisa boa por peixe nessa atualização Sleepy

uso nuker atcak >> skill reeling e pumping sem target
e coloco em buff a skill fishing
(12-31-2013 21:20 PM)viadinho24 Wrote: [ -> ]
(12-15-2013 23:34 PM)forfish Wrote: [ -> ]Pescaria Valiance
Alguém sabe me dizer se está funfando o bagulho na pescaria?
Não to conseguindo fazer rodar. Angry
Ou não estou sabendo configurar ... Confused
Tanta coisa boa por peixe nessa atualização Sleepy

uso nuker atcak >> skill reeling e pumping sem target
e coloco em buff a skill fishing

E como o bot sabe qual skill usar e quando usar? Se não da fail direto não?
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
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;


-----------------------------------------------------------------------
Reference URL's