Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*=======================================================
- * Add or Update a mob drop temporarily [Akinari]
- * Original Idea By: [Lupus]
- *
- * addmonsterdrop <mob_id or name>,<item_id>,<rate>;
- *
- * If given an item the mob already drops, the rate
- * is updated to the new rate. Rate cannot exceed 10000
- * Returns 1 if succeeded (added/updated a mob drop)
- *-------------------------------------------------------*/
- BUILDIN_FUNC(addmonsterdrop)
- {
- struct mob_db *mob;
- int item_id,rate,i,c = 0;
- if(script_isstring(st,2))
- mob = mob_db(mobdb_searchname(script_getstr(st,2)));
- else
- mob = mob_db(script_getnum(st,2));
- item_id=script_getnum(st,3);
- rate=script_getnum(st,4);
- if(!itemdb_exists(item_id)){
- ShowError("addmonsterdrop: Nonexistant item %d requested.\n", item_id );
- return 1;
- }
- if(mob) { //We got a valid monster, check for available drop slot
- for(i = 0; i < MAX_MOB_DROP; i++) {
- if(mob->dropitem[i].nameid) {
- if(mob->dropitem[i].nameid == item_id) { //If it equals item_id we update that drop
- c = i;
- break;
- }
- continue;
- }
- if(!c) //Accept first available slot only
- c = i;
- }
- if(c) { //Fill in the slot with the item and rate
- mob->dropitem[c].nameid = item_id;
- mob->dropitem[c].p = (rate > 10000)?10000:rate;
- script_pushint(st,1);
- } else //No place to put the new drop
- script_pushint(st,0);
- } else {
- ShowWarning("addmonsterdrop: bad mob id given %d\n",script_getnum(st,2));
- return 1;
- }
- return 0;
- }
- /*=======================================================
- * Delete a mob drop temporarily [Akinari]
- * Original Idea By: [Lupus]
- *
- * delmonsterdrop <mob_id or name>,<item_id>;
- *
- * Returns 1 if succeeded (deleted a mob drop)
- *-------------------------------------------------------*/
- BUILDIN_FUNC(delmonsterdrop)
- {
- struct mob_db *mob;
- int item_id,i;
- if(script_isstring(st,2))
- mob = mob_db(mobdb_searchname(script_getstr(st,2)));
- else
- mob = mob_db(script_getnum(st,2));
- item_id=script_getnum(st,3);
- if(!itemdb_exists(item_id)){
- ShowError("delmonsterdrop: Nonexistant item %d requested.\n", item_id );
- return 1;
- }
- if(mob) { //We got a valid monster, check for item drop on monster
- for(i = 0; i < MAX_MOB_DROP; i++) {
- if(mob->dropitem[i].nameid == item_id) {
- mob->dropitem[i].nameid = 0;
- mob->dropitem[i].p = 0;
- script_pushint(st,1);
- return 0;
- }
- }
- //No drop on that monster
- script_pushint(st,0);
- } else {
- ShowWarning("delmonsterdrop: bad mob id given %d\n",script_getnum(st,2));
- return 1;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement