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

TFS 0.X Spell heal Guild and Party

kennyubuntu

Member
Joined
May 20, 2016
Messages
150
Reaction score
13
I would like to have 2 spells but idk how to do:

1- party heal
2- guild heal

Those spells should heal everyone on screen in your party or in your guild

Is it easy to do?
 
Solution
I guess this:
Lua:
if getPlayerGuildId(pid) > getPlayerGuildId(cid) then

to this:
Lua:
if getPlayerGuildId(pid) == getPlayerGuildId(cid) then
Back
Top