![]() |
Need few macros - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html) +--- Forum: Requests (https://forums.bmega.net/forum-17.html) +--- Thread: Need few macros (/thread-20923.html) |
Need few macros - songo1981 - 09-18-2018 Does anyone have the following macros or could create me these macros: Turn off mana tools by a key Turn off healing tools by a key Enable/Disable Utani Tempo Hur by key (if disabled only uses haste) Throw flower after mwall with on/off key (not the numkeys 1-9 one) Throw mw on previous mwall at timer 0.3? (probably impossible) Trash sqm by numkeys 1-9 (2 items) Would be greatly appriciated! ![]() RE: Need few macros - Catar - 09-18-2018 1. no 2. no 3. its not that difficult, you can use these commands for your macro ReUser.Pause(Name) ReUser.UnPause(Name) Tibia.IsKeyDown(VirtualKeyCode) 4. ? 5. technically possible, but difficult to make and would take too much time 6. Combination of this, and this this macro (made it for you, check spoiler) [spoiler] [macro]100 {Throw Trash} ThrowItem1:=268 ThrowItem2:=3031 NY:=Sub(:Y, 1) SY:=Add(:Y, 1) WX:=Sub(:X, 1) EX:=Add(:X, 1) Tibia.KeyDown(:K_NUMPAD7)==0 [NW] Tibia.KeyDown(:K_NUMPAD8)==0 [N] Tibia.KeyDown(:K_NUMPAD9)==0 [NE] Tibia.KeyDown(:K_NUMPAD4)==0 [W] Tibia.KeyDown(:K_NUMPAD5)==0 [C] Tibia.KeyDown(:K_NUMPAD6)==0 [E] Tibia.KeyDown(:K_NUMPAD1)==0 [SW] Tibia.KeyDown(:K_NUMPAD2)==0 [S] Tibia.KeyDown(:K_NUMPAD3)==0 [SE] exit() {NW} tX:=!WX tY:=!NY GoLabel(throw) {N} tX:=:X tY:=!NY GoLabel(throw) {NE} tX:=!EX tY:=!NY GoLabel(throw) {W} tX:=!WX tY:=:Y GoLabel(throw) {C} tX:=:X tY:=:Y GoLabel(throw) {E} tX:=!EX tY:=:Y GoLabel(throw) {SW} tX:=!WX tY:=!SY GoLabel(throw) {S} tX:=:X tY:=!SY GoLabel(throw) {SE} tX:=!EX tY:=!SY GoLabel(throw) {throw} Map.ItemOnTop.ID(!tX, !tY, :Z)<>!ThrowItem1 [t] Map.Thrown(!ThrowItem1, 1, !tX, !tY, :Z) exit() {t} Map.ItemOnTop.ID(!tX, !tY, :Z)<>!ThrowItem2 Map.Thrown(!ThrowItem2, 1, !tX, !tY, :Z) exit() [/macro] Code: ThrowItem1:=3492 RE: Need few macros - songo1981 - 09-18-2018 By no. 4 i mean if an mwall disappears yours/enemies then throw a flower but not to spam like the other one you created which looks awesome and works functionally but i set It to 2ms which throws a lot of flowers where if i set a bigger delay its easier to push you. I'm a noob at creating scripts, dont have an idea how to create the haste one ![]() Thank you for the trash script ![]() RE: Need few macros - Catar - 09-18-2018 Give me all possible ID's of mwall , i'll think about it. but may be or may not be possible RE: Need few macros - songo1981 - 09-18-2018 All id's? theres only 1 to my knowledge ID: 2129 |