Versuch mal diese Quest:
PHP Code:
quest monster_drop begin
state start begin
when VNUM.kill begin
local monster_level = DAS_LEVEL_VON_DEM_MONSTER
if pc.get_level() <= monster_level and -10 then
chat("Du dropst von dem Monster nichts.")
elseif pc.get_level() >= monster_level +10 then
chat("Du dropst von dem Monster nichts.")
else
game.drop_item_with_ownershio("ITEMVNUM", ANZHAL)
end
end
end
end
Ich weis nicht ob sie funktioniert, habe solch eine Art von Quest noch nie geschrieben.