| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 42,533
» Latest member: triip
» Forum threads: 21,069
» Forum posts: 108,665
Full Statistics
|
| Online Users |
There are currently 7 online users. » 0 Member(s) | 1 Guest(s) Applebot, Baidu, Bing, Google, UptimeRobot, Yandex
|
| Latest Threads |
RL MAP OTS 10.98 CAVEBOT ...
Forum: Off-Topic
Last Post: Mephisto
Yesterday, 04:11 PM
» Replies: 0
» Views: 11
|
Womens From Your City - N...
Forum: Sugestions
Last Post: marchsala
01-23-2026, 10:27 PM
» Replies: 0
» Views: 16
|
GET A $500,500.99 GIFT TH...
Forum: Off-Topic
Last Post: jhonnathanmuller
01-22-2026, 10:04 PM
» Replies: 0
» Views: 17
|
We’re Curating a $500,500...
Forum: Off-Topic
Last Post: jhonnathanmuller
01-22-2026, 01:35 PM
» Replies: 0
» Views: 21
|
Girls From Your Town - An...
Forum: Sugestions
Last Post: Emos
01-19-2026, 11:31 PM
» Replies: 0
» Views: 54
|
Womens From Your Town - A...
Forum: Sugestions
Last Post: [email protected]
01-12-2026, 07:26 AM
» Replies: 0
» Views: 81
|
Womens In Your Town - Ano...
Forum: Sugestions
Last Post: jimmytox23
01-11-2026, 06:19 AM
» Replies: 0
» Views: 70
|
Womens From Your City - N...
Forum: Sugestions
Last Post: jesusazr25
01-03-2026, 02:33 PM
» Replies: 0
» Views: 111
|
Womens In Your City - No ...
Forum: Sugestions
Last Post: [email protected]
01-03-2026, 07:25 AM
» Replies: 0
» Views: 89
|
Girls In Your Town - No V...
Forum: Sugestions
Last Post: Cloudjf
12-31-2025, 01:59 PM
» Replies: 0
» Views: 95
|
|
|
MACRO - Magic Wall Behind Yourself |
|
Posted by: doxmey - 09-05-2020, 03:54 PM - Forum: Free Scripts
- Replies (1)
|
 |
Code: 2 {MwBehind} Tibia.KeyDown(:K_NEXT)==1 Self.Direction()==:East [1] x1:=Self.X() y1:=Self.Y() VarSub(x1, 1) mapid:=Map.ItemOnTop.ID(!x1, !y1, :Z) Map.UseOn(3180, !mapid, !x1, !y1, :Z, 1) Exit() {1} Self.Direction()==:West [2] x2:=Self.X() y2:=Self.Y() VarAdd(x2, 1) mapid:=Map.ItemOnTop.ID(!x2, !y2, :Z) Map.UseOn(3180, !mapid, !x2, !y2, :Z, 1) Exit() {2} Self.Direction()==:South [3] x3:=Self.X() y3:=Self.Y() VarSub(y3, 1) mapid:=Map.ItemOnTop.ID(!x3, !y3, :Z) Map.UseOn(3180, !mapid, !x3, !y3, :Z, 1) Exit() {3} Self.Direction()==:North x4:=Self.X() y4:=Self.Y() VarAdd(y4, 1) mapid:=Map.ItemOnTop.ID(!x4, !y4, :Z) Map.UseOn(3180, !mapid, !x4, !y4, :Z, 1) Exit()
Default key is Page-down, you can edit it on Tibia.KeyDown(:K_NEXT) k:next is page down just change to whatever you need. This macro is useful in the library.
|
|
|
MACRO - Minimize Open Corpses |
|
Posted by: doxmey - 05-27-2020, 02:17 AM - Forum: Free Scripts
- Replies (18)
|
 |
So I've created a little macro to minimize the creatures corpses as you open them. This is useful when for example you just killed about 8 monsters and the bot goes to open corpses, after about 3-4 corpses it starts closing the already opened ones and doesn't loot them because the container closed when the new one was opened.
Code: 100 {CorpseMinimizer by Dox} bp:=5 VarAdd(bp, 1) Containers.TotalOpen()>=!bp [else] con:=Containers.TotalOpen() Container.IsCorpse(!con)==1 VarGet(con!con)==0 Self.ToggleMinimizeBackpack(!con) VarSet(con!con, 1) Exit() {else} VarSet(con1, 0) VarSet(con2, 0) VarSet(con3, 0) VarSet(con4, 0) VarSet(con5, 0) VarSet(con6, 0) VarSet(con7, 0) VarSet(con8, 0) VarSet(con9, 0) VarSet(con10, 0) VarSet(con11, 0) VarSet(con12, 0) VarSet(con13, 0) VarSet(con14, 0) VarSet(con15, 0) VarSet(con16, 0) VarSet(con17, 0) VarSet(con18, 0) VarSet(con19, 0) VarSet(con20, 0) Exit()
Change NUMBER_OF_BACKPACKS to how many backpacks you have open.
Remember for it to work all backpacks must be minimized.
I'm still analyzing how it goes but any bugs or improvements please let me know I'm open to suggestions or other ways to do this. Also if it helped you rep me!
|
|
|
| [Macro] Close tibia if get Frag |
|
Posted by: erleo - 01-19-2019, 05:08 PM - Forum: Free Scripts
- No Replies
|
 |
Simple macro for chill botting xDD
Code: 1 {Close tibia if get Frag} When.SystemMessage(CLOSE TIBIA, Warning! The murder of ) Exit() {CLOSE TIBIA} Tibia.Close() Exit()
Code: When.SystemMessage(CLOSE TIBIA, Warning! The murder of )
Exit()
{CLOSE TIBIA}
Tibia.Close()
Exit()
|
|
|
|