Jump to content
  • 0

Q> CUSTOM MOB DROP


Critica

Question


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  223
  • Reputation:   4
  • Joined:  02/23/12
  • Last Seen:  

Hi.!

I just wana ask, is there a script or any easy way to add a custom item drop to a monster other than adding it manually 1 by 1?

i'd like to add some custom drop items on some mvp's

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  


OnInit:

setarray .mvpid[0],1115,1150; // Add more if you want. Just add the mobID.

end;

OnNPCKillEvent:

for( set @i,0; @i<getarraysize(.mvpid); set @i,@i+1 ) {

if(killedried == .mvpid[.@i]) getitem 512,1; end; // Edit the ItemID for the drop.

}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  223
  • Reputation:   4
  • Joined:  02/23/12
  • Last Seen:  

thanks for the reply, i kinda have the same script. 

except need it per MvP, not all of them

for ex.

Kiel has 3% drop of item 501
Tao Gunka 3% drop of item 502
Orc Lord 3% drop of item 503

else

10% drop 504,505,506 item to other monsters

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...