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

jak zrobic aby skille nie spadaly po dedzie

Ustaw w swoich Sampl-ach w acc, na podstawie których robisz postacie w ACC.
I ustaw loseSkills na 0 ;) Czy jakoś tak ;D
 
Ustaw w swoich Sampl-ach w acc, na podstawie których robisz postacie w ACC.
I ustaw loseSkills na 0 ;) Czy jakoś tak ;D

to teraz przeczytaj jeszcze raz 1 post tego typka i skonfrontuj to z tym co napisałeś xd
 
Lua:
doPlayerSetLossSkill(cid, doLose)
i
Lua:
onPrepareDeath(cid, deathList)
a mianowicie coś w stylu:
Lua:
function isBlessed(cid)
	for i=1,5 do if not(getPlayerBlessing(cid, i)) then return false end end
	return true
end

function onPrepareDeath(cid, deathList)
	doPlayerSetLossSkill(cid, isBlessed(cid) and 0 or 10)
	return TRUE
end
gdzie 10 = wartość ile spada bez bless.
 
Last edited:
Back
Top