Procurei em vários locais e forums mas só achei listas de funções lua para tfs antigos.. alguém tem guardado em arquivo ou sabe um local escondido que tenha a lista de funções do tfs 1.2 com exemplos tipo
[ "do" functions
Introduction
These functions usually execute an action.
List
doPlayerSendCancel(cid, text)
Info
This function will send default cancel message do player (visible in bottom of
Returns
Return 1 (TRUE) - when msg was sent, 0 - when it was impossible (FALSE)
Example
if getPlayerLevel(cid) >= 10 then --checking level
doSummonCreature("Chicken", fromPosition.x + 1)
else
doPlayerSendCancel(cid, "Sorry, your level isnt enought to summon this monster."
end
]
Grato