Thread Rating:
  • 4 Vote(s) - 4.75 Average
  • 1
  • 2
  • 3
  • 4
  • 5
MSG here when You need macros
(01-29-2015, 10:34 AM)mr. Kris Wrote: Add spears in looter to dropable and add macro:

Code:
1000 {Loot spears}MIN:=15 X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()<=!MIN! Map.PickUpEx(3277, 1, 1, !X!, !Y!, !Z!, 2) Self.Equip.LeftHand(3277)

Working fine. Thank you!
Reply
I need macro to clean Slime Fungus on Servants cave.
Reply
You must use command:
Code:
Map.UseOn(ID, OnID, X, Y, Z, Range)

ID = Slime Gobbler ID
OnID = Slime Fungus ID (can be more like one, than make more like 1 command)

Ex.

Code:
5000 {SLime Gobbler} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.UseOn(ID, OnID, !X!, !Y!, !Z!, 2) Macro.Wait(5000) Map.UseOn(ID, OnID, !X!, !Y!, !Z!, 2) Macro.Wait(5000) Map.UseOn(ID, OnID, !X!, !Y!, !Z!, 2) Exit()

I add 3 commands for 3 type of slime fungus (can be more).
ID can look when You press Alt+F8 (north-west monitor corner) and click on slime fungus right mouse button.
I'm trying HELP You guys, make me favour and press this /\ green button with REP+, this keeping me with helping You.
Reply
Hey I need script for use exori when no player on screen and mana above 80%, when no have enough mana use exori ico
Reply
Hello, i need a script which drops empty vials, BUT when they stack to 5 or 10, not every single one.
I Found out such a topic here , but i tried it and it doesn't work properly - still dropping every single one.
I put 5 on COUNT, and the only thing it changed was, when u got eg. 22 vials, it drops 5-5-5-5-2 Sad

I know there was many topics about this problem, but i couldn't find out any macro working properly.

Yours,
Masiakox
Reply
hello i looking for a macro with safe bank if <=20000 then log out
If i help you please Click ^ to give REP point Smile
if I'll have more rep I'll make better scrips

Reply
(01-29-2015, 10:53 AM)Muff Wrote:
(01-29-2015, 10:34 AM)mr. Kris Wrote: Add spears in looter to dropable and add macro:

Code:
1000 {Loot spears}MIN:=15 X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()<=!MIN! Map.PickUpEx(3277, 1, 1, !X!, !Y!, !Z!, 2) Self.Equip.LeftHand(3277)

Working fine. Thank you!

I have another question. Is there any way You can improve this macro to look inside the trolls/swamp trolls already dead in the ground so it gets more spears?
Playing in optional pvp server, there are too many players so I can not get as many spears I use. 5 to 10 minutes im out of spears :S
Reply
1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright
Reply
(01-29-2015, 07:02 PM)damiansnk Wrote: 1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright

I will test it tomorrow.. Thank you.. I will give rep.
Reply
(01-29-2015, 08:11 PM)Muff Wrote:
(01-29-2015, 07:02 PM)damiansnk Wrote: 1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright

I will test it tomorrow.. Thank you.. I will give rep.

Im afraid that it does not work.
Reply
I repeat my request.

Need safe bank if less xx money in bank then log out
If i help you please Click ^ to give REP point Smile
if I'll have more rep I'll make better scrips

Reply
(01-31-2015, 10:22 AM)wedel92 Wrote: I repeat my request.

Need safe bank if less xx money in bank then log out

I don't have knowledge to do this :/
I'm trying HELP You guys, make me favour and press this /\ green button with REP+, this keeping me with helping You.
Reply
hey i rly need macro for massage on trade channel, trade helper doesnt work on ots. rep if work Smile
Reply
(01-31-2015, 07:52 AM)Muff Wrote:
(01-29-2015, 08:11 PM)Muff Wrote:
(01-29-2015, 07:02 PM)damiansnk Wrote: 1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright

I will test it tomorrow.. Thank you.. I will give rep.

Im afraid that it does not work.

are you sure you put id your weapon and actived macro ?
im usuing in on 2 scripts swamp trols and trols ab
work good i done 10 paladins till lvl 25 and its ok
u must do something wrong
Reply
(01-31-2015, 05:26 PM)damiansnk Wrote:
(01-31-2015, 07:52 AM)Muff Wrote:
(01-29-2015, 08:11 PM)Muff Wrote:
(01-29-2015, 07:02 PM)damiansnk Wrote: 1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright

I will test it tomorrow.. Thank you.. I will give rep.

Im afraid that it does not work.

are you sure you put id your weapon and actived macro ?
im usuing in on 2 scripts swamp trols and trols ab
work good i done 10 paladins till lvl 25 and its ok
u must do something wrong

Maybe, I will try it again. Yes i activated macro and but right ID.

(01-31-2015, 06:19 PM)Muff Wrote:
(01-31-2015, 05:26 PM)damiansnk Wrote:
(01-31-2015, 07:52 AM)Muff Wrote:
(01-29-2015, 08:11 PM)Muff Wrote:
(01-29-2015, 07:02 PM)damiansnk Wrote: 1000 {weapon} 2000 {Equip Sword} Misc.ItemCountEx(3277)<1 Self.Equip.LeftHand(TYPE ID WEAPON)

3000 {equip spear} 2000 {Equip Spear} Misc.ItemCountEx(3277)>=1 Self.Equip.LeftHand(3277)

1000 {Drop spear2} Misc.ItemCountEx(3277)>10 Map.Thrown(3277, 1, !X!, !Y!, !Z!)

5000 {Drop spear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Inventory.LeftHand.Count()>10 Self.UnEquip.LeftHand(0)

100 {pickupspear} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Misc.ItemCountEx(3277)>9 [pick] Exit() {pick} Map.PickUpEx(3277, 5, 0, !X!, !Y!, !Z!, 5)

Put id of weapon in 1st ratana or something
that 4 macros and should be alright

I will test it tomorrow.. Thank you.. I will give rep.

Im afraid that it does not work.

are you sure you put id your weapon and actived macro ?
im usuing in on 2 scripts swamp trols and trols ab
work good i done 10 paladins till lvl 25 and its ok
u must do something wrong

Maybe, I will try it again. Yes i activated macro and but right ID.

My apologies. Its working fine now. Thank you.. Respect!!!
Reply
(01-31-2015, 11:20 AM)mr. Kris Wrote:
(01-31-2015, 10:22 AM)wedel92 Wrote: I repeat my request.

Need safe bank if less xx money in bank then log out

I don't have knowledge to do this :/

So maybe if less xx mana potions then log out so I will add full check and later macro with mp
{} Misc.ItemCountEx(ID mp)<=xx self.logout () exit () it will be work?
If i help you please Click ^ to give REP point Smile
if I'll have more rep I'll make better scrips

Reply
Need macro to put stealth ring when have 3 cyclops smith, or 3 drunk
Reply
Add balance say
After them macro
Self.balance()<x
Tibia.close ()

X is gps counting in k 1- 1000 gp
Reply
Hello i need a script which will allow me to follow my friend and attack monsters that he is attacking and keep distance 4 sqm from him avoid mobs waves is that possible?
Reply
When monster got hp %
90-100 say exori gran frigo
Thanks Smile
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)