• 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!

DoSendTutorial(cid, tutorialid) Possibles IDS [ all here ]

Mikii

Active Member
Joined
Mar 28, 2013
Messages
197
Reaction score
46
Tested on TFS 1.0

Code:
doSendTutorial(cid,1) -- Welcome to Tibia! Use your arrow keys or left-click with your mouse to walk around.
doSendTutorial(cid,2) -- Very good! You can also left-click on your automap to go to a certain spot. Try to click on the new marker on your automap after you closed this window.
doSendTutorial(cid,3) -- Quest Log Focus
doSendTutorial(cid,4) -- Do you see a chest like this in this room? Right-click on it and select 'Open' from the context menu to take what's inside.
doSendTutorial(cid,5) -- You now have a bag to carry items. There is also a coat inside. Drag and drop it from the bag to your armor slot to wear it after you closed this window. 
doSendTutorial(cid,6) -- Light your torch by right-clicking it and selecting 'Use'. It will slowly burn down as long as it is lit. 'Use' it again to turn it off once you leave the darkness. You can use many things in Tibia, just explore the room! 
doSendTutorial(cid,7) -- Battle Focus
doSendTutorial(cid,8) -- Excellent fighting technique! You can loot the bodies of creatures which you have killed by right-clicking on them and selecting 'Open' from the context menu.
doSendTutorial(cid,9) -- Do you see the loot window to your right? Drag and drop the cockroach leg into your bag to take it with you! Collect 3 cockroach legs for Santiago!
doSendTutorial(cid,10) -- With your new shovel which you can find in your inventory now you can dig holes on certain spots. Follow the path to the east to find such a place! When there right-click the shovel, select 'Use with' and then left-click on the loose stone pile.
doSendTutorial(cid,11) -- With your rope you can climb up a rope spot to exit this cave again. Right-click the rope, select 'Use with' and then left-click on the rope spot.
doSendTutorial(cid,12) -- Outifit Focus
doSendTutorial(cid,13) -- Look at the NPC trade window to your right. Left-click on the button 'Sell' to see what you can sell to an NPC. The button 'Buy' shows what you can buy from an NPC. To sell meat or ham to Carlos, left-click on 'Sell' and choose either 'meat' or 'ham'. If you want to sell more than one piece, left-click and hold the slide bar, then drag it to the desired amount. Click 'Ok' to finish the trade.
doSendTutorial(cid,14) -- Welcome to the village of Rookgaard! You are on your own now, but there are a few new marks on your automap. Check them out for important locations and NPCs to talk to. Fight monsters to earn money for better equipment and to level up! Once you have reached level 8, you are ready to become a knight, a paladin, a sorcerer or a druid. Have fun!
doSendTutorial(cid,15) -- Don't have
doSendTutorial(cid,16) -- In this area characters can attack each other, like in most parts of Tibia. Be careful not to attack someone by accident. If you see a character with a white skull or with a red skull, they have previously attacked or even killed other characters.
doSendTutorial(cid,17) -- Don't have
doSendTutorial(cid,18) -- Folow mode FOCUS
doSendTutorial(cid,19) -- Health Focus
doSendTutorial(cid,20) -- This area is limited to premium citizens only. Buy a premium account to access new areas and unique features in Tibia!
doSendTutorial(cid,21) -- Use the arrow keys to walk on stairs.
doSendTutorial(cid,22) -- Type 'hi' in your Local Chat window.
doSendTutorial(cid,23) -- Right-click exactly here to use ladders.
doSendTutorial(cid,24) -- Push the branch by left-clicking on it, then hold the left mouse button and drag the branch to its destination. Right-click and choose 'Use with' cart.
doSendTutorial(cid,25) -- Fight at close distance, but be careful not to let yourself be circled! Always have a health potion ready!
doSendTutorial(cid,26 or 27) -- Keep your distance, your HP are lower, but your attack is higher.
doSendTutorial(cid,28) -- Type the spell right in the chat window and press enter.
doSendTutorial(cid,29) -- Open the 'Options' menu and find 'Hotkeys'.
doSendTutorial(cid,30) -- Enter the right data into the hotkeys menu.
doSendTutorial(cid,31) -- Press F1 to cast the new spell.
doSendTutorial(cid,32) -- Find the rune in your inventory, right-click on it, choose 'Use with' and then click on the monster.
doSendTutorial(cid,33) -- NO USE DEBUG

doSendTutorial(cid,34) -- Type the spell right in the chat window and press enter.

doSendTutorial(cid,35) -- Open the 'Options' menu and find 'Hotkeys'. 
doSendTutorial(cid,36) -- Enter the right data into the hotkeys menu. 
doSendTutorial(cid,37) -- Press F2 to cast the new spell.
doSendTutorial(cid,38) -- Click on the chase opponent icon in the combat controls, then click on a cockroach in the battle list.
doSendTutorial(cid,39) -- Open the dead cockroach by right-clicking it and choosing 'Open', then drag the cockroach leg to your bag. 
doSendTutorial(cid,40) -- 40 OR MORE NO USE DEBUG


Script for TEST on Talkaction [ ONLY TEST ]
Tutoriais.lua
Code:
function onSay(cid, words, param)
    local tutorialid = tonumber(param)
    doSendTutorial(cid,tutorialid )
    return false
end

On Talkaction.xml
Code:
<talkaction words="!totorial" script="Tutoriais.lua"/>

On Say
Code:
!tutorial "1
 
/\
Rookgaard_beginners.jpg
 
Looks like it Tutorial as Real Tibia has in the begining when you start new character.
 
Sorry for reviving this but since this was implemented in 8.2 would this work on 0.3-0.4? If not, is there any variant?
 
Back
Top