Jump to content
  • 0

Specific Item Drop on MVPs


Littlefoot

Question


  • Group:  Members
  • Topic Count:  70
  • Topics Per Day:  0.02
  • Content Count:  203
  • Reputation:   1
  • Joined:  05/11/12
  • Last Seen:  

How can i add pods item to a specific mvp like thanatos randgris and tanee only? 100% Item Rate Will do.

(PS I Used mob_item_ratio but it obey's the server rate only)

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

Just add the items on the monster item drop (mob_db.txt)

Or use this one

 

-	script	PODS	-1,{
	OnNPCKillEvent:
		if ( getmonsterinfo( killedrid, 22 ) ) {
			if(killedrid == (thanatos id) || killedrid == (tanee id)){
				getitem 7179,100; //gives 100 pods
			}
		}
	end;
}

Note, script above is untested.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  32
  • Reputation:   0
  • Joined:  02/19/16
  • Last Seen:  

Try this:

https://rathena.org/board/topic/80981-drop-rates/?p=191834

 

Then use:

mob_item_ratio.txt

 

or just use this:

https://rathena.org/board/topic/68833-drop-rate-issue/?p=127254

 

 

That's what I did to get it to 100% otherwise it only goes to 50%

Edited by BlackSnow
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  155
  • Reputation:   6
  • Joined:  03/30/13
  • Last Seen:  

I recommend you to do the next:

 

1. According to your game version (renewal or pre-re), copy the info of the monsters you want to edit, in your case, from Thanatos, Valkyrie Randgri and Lady Tanee and paste the line of code of them in db/import/mob_db.txt (to avoid editing the original files).

 

2. Find their drop list and add your item ID followed by a ( , ) and the add it's drop rate, according to you looking for 100% drops, this would be enough:

ITEM_ID,10000

And then save the file.

 

3. In-game, write the command @reloadmobdb, and now you should have the new item added to their drop list with 100% chance of drop.

 

C:

 

____

EDIT:

 

Info from pre-re/mob_db.txt

1688,LADY_TANEE,Lady Tanee,Lady Tanee,89,493000,0,64995,43222,14,450,2170,20,44,1,125,48,78,210,38,10,12,2,3,64,0x1A4,100,576,432,360,32497,617,5500,12095,5000,732,2000,12090,5000,634,4000,12129,1000,5116,1000,985,5000,617,2000,1716,6000,ITEM_ID,10000,0,0,4376,1
1708,THANATOS,Thanatos,Memory of Thanatos,99,445660,0,3666000,2145060,3,3812,7483,35,35,100,108,30,86,147,32,10,12,2,6,88,0x37B5,120,115,816,504,1833000,617,5500,603,5000,732,2000,7444,1000,2519,1000,7450,5000,2342,5000,2412,5000,2515,1000,2655,500,ITEM_ID,10000,0,0,4399,1
1751,RANDGRIS,Valkyrie Randgris,Valkyrie Randgris,99,3567200,0,2854900,3114520,3,5560,9980,25,42,100,120,30,120,220,210,10,12,2,8,86,0x37B5,100,576,576,480,1427450,617,5500,603,5000,616,2000,7510,5000,2357,1600,2524,3000,2421,3000,2229,5000,7024,2500,ITEM_ID,10000,0,0,0,0,4407,1

Copy this in your db/import/mob_avail.txt and edit ITEM_ID to write your desired item ID.

Edited by Echoes
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...