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

Solved Talkaction check SOUL

APTGET

New Member
Joined
Dec 29, 2020
Messages
37
Reaction score
3
Hello World. Good?!

I currently have a problem where I can't see a soul in my client. Is there a command line / code for me to "check" my soul points?

*I using tfs 1.2

Thanks poeple.
 
Solution
E
Lua:
function onSay(player, words, param)
    player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have " .. player:getSoul() .. " soul points.")
    return false
end
Back
Top