[HELP] autodroping items

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

lyfgoeson0
Noob
Noob
Posts: 15
Joined: 10 Oct 2008, 05:49
Noob?: Yes

[HELP] autodroping items

#1 Post by lyfgoeson0 »

guys need help when i need to autodrop a item
usually you can find it on pickupitems.txt
but my problem is he doesnt retrying

so i make this macro for that reason

automacro DROP{
priority 1
timeout 10
run-once 0
call {
pause 3
do drop "name of item" 999
stop

But it didnt drop
someone help me
im noob in macro so if you got some changes
on this or improvements
lyfgoeson0
Noob
Noob
Posts: 15
Joined: 10 Oct 2008, 05:49
Noob?: Yes

Re: [HELP] autodroping items

#2 Post by lyfgoeson0 »

anybody?
Maseo84
Noob
Noob
Posts: 17
Joined: 14 Jun 2009, 07:06
Noob?: No

Re: [HELP] autodroping items

#3 Post by Maseo84 »

# In this file you can control which items to put in storage,
# to sell, or to leave in the inventory.
#
# Syntax:
# (item name) (minimum) (auto-store) (auto-sell) [put in cart] [get from cart]
# item name : Name of the item.
# miminum : The minimum amount of this item that you want to keep in inventory.
# autostore : Set to 1 to walk back to a Kapra NPC to put in storage.
# autosell : Set to 1 to sell item at a buy/sell NPC.
# put in cart : Set to 1 to automatically put this item in cart.
# get from cart : Set to 1 to automatically get this item from cart.
#
# The example below will sell all jellopies, store all knifes and puts
# all flowers in cart:
# Jellopy 0 0 1
# Knife 0 1 0
# Flower 0 0 0 1
#
# This example will get Red Potions from cart if you have less than 25
# of them in your inventory:
# Red Potion 25 0 0 0 1

Below will drop item
Jellopy -1 0 0
Hello World!