-
Quem Está Navegando 0 membros estão online
Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
Por poko360
meu exp ring ta infinito fika nos 30 minutos direto, isso so acontece com alguns players, so que ja coloquei tudo certo e fica dando um error na distro
<Luadotransformitem> item not found
aqui meu exp ring
function onEquip(cid, item, slot) local rate = {} if getPlayerLevel(cid) <= 1000 then rate = 2 elseif getPlayerLevel(cid) > 1001 and getPlayerLevel(cid) <= 2000 then rate = 2 elseif getPlayerLevel(cid) > 2001 and getPlayerLevel(cid) <= 3000 then rate = 2 elseif getPlayerLevel(cid) > 3001 and getPlayerLevel(cid) <= 4000 then rate = 2 elseif getPlayerLevel(cid) > 4001 then rate = 2 end doTransformItem(item.uid, 10309, 1) doPlayerSendTextMessage(cid, 22, "Sua experiencia foi multiplicada (2x).") doPlayerSetExperienceRate(cid, rate) return TRUE end function onDeEquip(cid, item, slot) doTransformItem(item.uid, 10310, 1) doPlayerSendTextMessage(cid, 22, "Sua experiencia esta de volta ao normal.") doPlayerSetExperienceRate(cid, 1.0) return TRUE end e no items.xml
<item id="10309" article="a" name="Double xp ring"> <attribute key="weight" value="500" /> <attribute key="description" value="Este anel lhe da 2x Exp (ativado)." /> <attribute key="slotType" value="ring" /> <attribute key="duration" value="1800" /> <attribute key="decayTo" value="0" /> <attribute key="showduration" value="1" /> <attribute key="transformDeEquipTo" value="10310" /> </item> <item id="10310" article="a" name="Double xp ring"> <attribute key="description" value="Este anel lhe da 2x Exp por 1 hora (desativado)." /> <attribute key="weight" value="500" /> <attribute key="slotType" value="ring" /> <attribute key="stopduration" value="1" /> <attribute key="showduration" value="1" /> <attribute key="transformEquipTo" value="10309" /> </item> -
Por narazaky
É bem simples:
ao usar um anel do ID 13825 o usuário ganha o dobro de exp, mas tem que esta equipado e ativar clicando com o botão direito que viraria id 13826<< que é esse que pode dar exp em bônus.
as coniçoes são:
para desativar o anel tem que esta com batle desativa e/ou só depois de 3 minutos de anel usado.
o anel terá um tempo de duração
ao ta equipado pode ficar com o anel de id 13825, mas não ganha exp extra, só se der use e vira o anel de id 13826
REP+ Para quem ajudar
estava tentando fazer, mas comecei a scriptear agora, por isso não tenho tanta experiencia
-