antiblock
Rodnia | Alpha & Omega
  • Chatbox

    Did you check out our Discord? https://discord.gg/FFdvMjk9xA
    You don't have permission to chat.
    Load More
.boon.

Drops Em Quest

12 posts in this topic

antiblock
https://arwen2.global/

Entendi um pouco sobre ela é otima , mais como faço para editar os drops e mobs que vai dropar?

Share this post


Link to post
Share on other sites

Onde tens 8001 é o id do monstro, o valor a seguir é o id do item, etc etc(alias como podes ver pela ordem que coloquei a descriçao em cima).

Share this post


Link to post
Share on other sites

Obrigado por partilhares !

 

Já foi testada ?

 

 

Cumprimentos CroSSie!

Share this post


Link to post
Share on other sites

Muito boa +1 .Obrigado por partilhares !Cumprimentos .

Share this post


Link to post
Share on other sites

Obrigado por partilhares !

 

Já foi testada ?

 

 

Cumprimentos CroSSie!

Sim, já testei eu mesmo, fi-la ontem.

Share this post


Link to post
Share on other sites

Não funciona --.

Share this post


Link to post
Share on other sites

Não deves ter feito algo xD porque pelo que sei ela funciona 100%

Share this post


Link to post
Share on other sites


quest drop_item begin

state start begin

when kill with not npc.is_pc() begin

local item_list = { --mob_vnum, item_vnum, item_count, rate, min_level, max_level

{ 8001, 19, 1, 100, 1, 10 },

{ 8001, 11209, 1, 100, 1, 10 },

{ 8001, 11409, 1, 100, 1, 10 },

{ 8001, 11609, 1, 100, 1, 10 },

{ 8001, 11809, 1, 100, 1, 10 }

}

for i = 1, table.getn(item_list), 1 do

local mobVnum, itemVnum, itemCount, getRate, minLevel, maxLevel = tonumber(item_list[1]), (item_list[2]), (item_list[3]), (item_list[4]), (item_list[5]), (item_list[6])

if npc.get_race() == mobVnum and pc.get_level() >= minLevel and pc.get_level() <= maxLevel and getRate >= number(0, 10000) / 100 then

pc.give_item2(itemVnum, itemCount)

end

end

end

end

end

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now