Skrypty & Kody drop

mafa123

User
Zarejestrowany
Dołączył
Luty 16, 2015
Posty
48
Liczba reakcji
0
Witam nie wiem jak zrobi? aby nie spada?y wszystkie conteinery/plecaki tylko te wybrane.
Chodzi o ten fragment skryptu "if hasSkull or math.random(item:isContainer() and 100 or 1000) <= lossPercent then"

PHP:
function onDeath(player, corpse, killer, mostDamage, unjustified, mostDamage_unjustified)
	if getPlayerFlagValue(player, PlayerFlag_NotGenerateLoot) or player:getVocation():getId() == VOCATION_NONE then
		return true
	end

	local amulet = player:getSlotItem(CONST_SLOT_RING)
	local hasSkull = isInArray({SKULL_RED, SKULL_BLACK}, player:getSkull())
	if amulet and amulet.itemid == ITEM_AMULETOFLOSS and not hasSkull then
		local isPlayer = false
		if killer then
			if killer:isPlayer() then
				isPlayer = true
			else
				local master = killer:getMaster()
				if master and master:isPlayer() then
					isPlayer = true
				end
			end
		end

		if not isPlayer or not player:hasBlessing(6) then
			player:removeItem(ITEM_AMULETOFLOSS, 1, -1, false)
		end
	else
		local lossPercent = player:getLossPercent()
		for i = CONST_SLOT_HEAD, CONST_SLOT_AMMO do
			local item = player:getSlotItem(i)
			if item then
				if hasSkull or math.random(item:isContainer() and 100 or 1000) <= lossPercent then
					if not item:moveTo(corpse) then
						item:remove()
					end
				end
			end
		end
	end

	if not player:getSlotItem(CONST_SLOT_BACKPACK) then
		player:addItem(ITEM_BAG, 1, false, CONST_SLOT_BACKPACK)
	end

	return true
end

---------- Tre?? dodana o 20:19 ----------

ref

---------- Tre?? dodana o 21:17 ----------

ref

---------- Tre?? dodana o 22:27 ----------

temat do zamkni?cia
 
Back
Do góry