• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

OTClient [OTCv8] MOD game_tutorial for Tibia

potinho

Advanced OT User
Joined
Oct 11, 2009
Messages
1,493
Solutions
17
Reaction score
187
Location
Brazil
Hello guys,

I've found on otserv.com.br this module. It attach some kind tutorial on OTCv8 and its very interesting. Buyt is designed for a PokeTibia. Does anyone have it for Tibia? With "neutral" images? Trying to save some work on it.

Attachment without images, original is too large
 

Attachments

Solution
Forget about this module; there's another one that's much better, more practical, easier to use, and lightweight. Just download it, place it directly in the data/mods folder, and it will load automatically. You can edit it whenever you want—it's really simple. Watch the GIF!

guide.gif
You could easily edit this however you like it, i've been learning from this module for quite some time, and enabled me to make a full guide for players to look back on things, even with GIFs!

You can just delete most of the config and make it your own, nobody will do that for you.

Took me an hour to prepare tutorials and write hem into this mod, it's very easy, if you need help just PM me!
 
Forget about this module; there's another one that's much better, more practical, easier to use, and lightweight. Just download it, place it directly in the data/mods folder, and it will load automatically. You can edit it whenever you want—it's really simple. Watch the GIF!

guide.gif
 

Attachments

Last edited:
Solution
Forget about this module; there's another one that's much better, more practical, easier to use, and lightweight. Just download it, place it directly in the data/mods folder, and it will load automatically. You can edit it whenever you want—it's really simple. Watch the GIF!

View attachment 86966
Thanks bro!
 
Assalam alaikum, should I check out both (want to make a customizable anime-inspired game (Gaara staring as "Sand Rookie", Rock Lee staring as "Crushed-Leg Rookie", even sensei's like Gai as "Wheels", Gojo as "Baby-Blue Sensei", Haruko Haruhara as "Crazy Moped", or even my boy Kazuma "Bullet Fist".
 
Forget about this module; there's another one that's much better, more practical, easier to use, and lightweight. Just download it, place it directly in the data/mods folder, and it will load automatically. You can edit it whenever you want—it's really simple. Watch the GIF!

View attachment 86966
How would i go about to make the guide open automatically once per character when they login for the first time?

I tried a way of keeping track on characters by PlayerNames but i hate that approach, any ideas? maybe there is a simple fix for it that i dont know about.
 
How would i go about to make the guide open automatically once per character when they login for the first time?
Once per character or once per PC/laptop client installation?
You can save that it was open in OTC files, so it will open once per PC installation - use similar code to 'Settings' to save info in some file on HDD.
 
How would i go about to make the guide open automatically once per character when they login for the first time?

I tried a way of keeping track on characters by PlayerNames but i hate that approach, any ideas? maybe there is a simple fix for it that i dont know about.
if it really is once per CHARACTER, instead of account or location, can you use login.lua as example?
It asks to pick your outfit as soon as you login for the first time.

LUA:
    if player:getLastLoginSaved() <= 0 then
        loginStr = loginStr .. " Please choose your outfit."
        player:sendOutfitWindow()
    else
 
if it really is once per CHARACTER, instead of account or location, can you use login.lua as example?
It asks to pick your outfit as soon as you login for the first time.

LUA:
    if player:getLastLoginSaved() <= 0 then
        loginStr = loginStr .. " Please choose your outfit."
        player:sendOutfitWindow()
    else
Oh that could work, yes i Would want it to behave exactly like The first outfit Window that pops up for new characters.

But i Would be needing to connect it to a script from The server side Then?
(i might be poorly explaining myself and im sorry for that)
Post automatically merged:

Once per character or once per PC/laptop client installation?
You can save that it was open in OTC files, so it will open once per PC installation - use similar code to 'Settings' to save info in some file on HDD.
I Would want it to open up for every new character similarly to @lukatxd example for the outfit Window




EDIT:
I went with a Storage based version instead and it works great.
 
Last edited:
Back
Top