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

spells learning error help

carre

Advanced OT User
Joined
Apr 23, 2013
Messages
881
Solutions
1
Reaction score
160
Location
Sweden
Hello otlander :)
I trying running a script for learning spells in rl tibia.
here is the script
my tfs is 0.3.7
Post automatically merged:

Screenshot_1.pngScreenshot_3.png
 

Attachments

Last edited:
solved!
check modules.lua
Code:
elseif(not parameters.vocation(cid)) then
Change to
Code:
elseif(getPlayerVocation(cid) ~= parameters.vocation and getPlayerVocation(cid) ~= parameters.vocation+4) then

Now it work ^^
 
Back
Top