não me lembro muito bem, mas acho que para delimitar quantidades, troque:
if magicitem.itemid == 7910 then
por
if magicitem.itemid == 7910 and magicitem.type >= 50 then
info
Group: Marquês
Joined: 01/03/06
Posts: 1k
Reputation: +38
Gender: Masculino

não me lembro muito bem, mas acho que para delimitar quantidades, troque:
if magicitem.itemid == 7910 then
por
if magicitem.itemid == 7910 and magicitem.type >= 50 then
info
Group: Infante
Joined: 27/07/09
Posts: 1.5k
Reputation: +405
Tibia Character: Gean Riot

/\yes man/\
e isso mesmo.
info
Group: Barão
Joined: 01/07/09
Posts: 216
Reputation: +4

Flooder #Subwat:
Reportado.
info
Group: Barão
Joined: 15/02/09
Posts: 203
Reputation: +13
Tibia Character: Dom Diego De La Vega

Usuário Subwat alertado novamente em 10% por flood. Espero que eu não precise te alerta de novo por flood brother.
info
Group: Campones
Joined: 16/07/09
Posts: 3
Reputation: 0
Tibia Character: Ludro
function onUse(cid, item, frompos, item2, topos) positem = {x=481, y=501, z=15, stackpos=2} --onde item vai ficar-- magicitem = getThingfromPos(positem) if magicitem.itemid == 7910 then doRemoveItem(magicitem.uid,50) doSendMagicEffect(positem,6) if item.itemid == 1946 then playerpos = {x=481, y=502, z=15, stackpos=253} --pos stone tile-- player = getThingfromPos(playerpos) nplayerpos = {x=503, y=506, z=15} --pos player dps-- doSendMagicEffect(playerpos,2) doTeleportThing(player.uid, nplayerpos) doSendMagicEffect(nplayerpos,10) doTransformItem(item.uid,1945) doSendAnimatedText(getPlayerPosition(cid), "Boa Sorte!.!.!", TEXTCOLOR_ORANGE) end if item.itemid == 1945 then playerpos = {x=481, y=502, z=15, stackpos=253} player = getThingfromPos(playerpos) nplayerpos = {x=503, y=506, z=15} doSendMagicEffect(playerpos,2) doTeleportThing(player.uid, nplayerpos) doSendMagicEffect(nplayerpos,10) doTransformItem(item.uid,1946) doSendAnimatedText(getPlayerPosition(cid), "Boa Sorte!.!.!", TEXTCOLOR_ORANGE) end else doPlayerSendCancel(cid,"Ponha 50 Feijoes Pagao em cima da mesa para fazer a alavanca funcionar.") end return 1 end