Jump to content

myenglishisbad

Inactive Member
  • Posts

    26
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by myenglishisbad

  1. Thank you guys i have resolved the quest, the quest stayed that :

     

    quest drop begin
    	state start begin
    		when kill begin
    		
    			local cav = pc.get_level() - npc.get_level()
    			if cav > 20	then
    				return
    				
    			else
    				local number = number(1,100)
    					if number <= 8 then
    						game.drop_item_with_ownership(25040,1)
    						syschat(string.format("Level do Mob %d",npc.get_level()))
    					end
    			end
    		end
    	end
    end

     

  2. this is my quest

     

    quest drop begin
    	state start begin
    		when kill begin
    		
    			local cav = npc.get_level() - pc.get_level()
    			if cav > 20	then
    				return
    				
    			else
    				local number = number(1,100)
    					if number <= 8 then
    						game.drop_item_with_ownership(25040,1)
    						syschat(string.format("Level do Mob %d",npc.get_level()))
    					end
    			end
    		end
    	end
    end

    this should explain, better, but when i kill moob with lv 120 and moob´s lv is 1 he drops

  3. i dont want players drop gold so what i need to do is delete :

    bool CHARACTER::DropGold(int gold)
    {
    return false;

    if (!CanHandleItem())
    return false;

    if (0 != g_GoldDropTimeLimitValue)
    {
    if (get_dword_time() < m_dwLastGoldDropTime+g_GoldDropTimeLimitValue)
    {
    ChatPacket(CHAT_TYPE_INFO, LC_TEXT("¾ÆÁ÷ °ñµå¸¦ ¹ö¸± ¼ö ¾ø½À´Ï´Ù."));
    return false;
    }
    }

     

     

    Right?

     

     

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.