Jump to content

V0iĐ

Premium
  • Posts

    154
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Posts posted by V0iĐ

  1. Try this:

    quest asd begin
    	state start begin
    		when NPCVnum.chat."I give you 10k item!..(woooooohooo)" begin
    		say"Do you want 10k item?"
    		local s = select("Yes", "No")
    		if s == 1 then
    			if pc.get_empty_inventory_count() >= 50 then
    				for i=1, 50 do
    					pc.give_item2(27001, 200)
    				end
    			else
    				say("You need 50 empty slot in inventory!")
    			end
    		else
    			say("See you later!")
    		end
    	end
    end
    

    It's give you 10k (50*200) item, if you have 50 empty slot in inventory! (theoretically :))

    • Love 1
×
×
  • 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.