• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Cykotitan's frag count in soul window HELP

zerghel

Tsuni
Joined
Jul 1, 2008
Messages
299
Reaction score
9
ok
so the script looks good
this script adds a soul point for each frag the player makes
here is the script
Code:
local config = {
	onlyLastHit = false
}
function onKill(cid, target, lastHit)
	if isPlayer(target) and (lastHit or (not lastHit and not config.onlyLastHit)) then
		doPlayerAddSoul(cid, 1)
	end
	return true
end
the thing is that im getting 1 soul for each monster i kill too

i'm using TFS Mystic spirit 0.2.7
 
btw i had to
gainsoulticks="36288000"
if you don't have this just add it
gainsoulamount="0"
to make it work properly

but
is there a way to stop getting soul by killing in duel zone?
(pvp zone)
 
Back
Top