Advertisement
Guest User

Untitled

a guest
Aug 5th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.58 KB | None | 0 0
  1. /*=======================================================
  2.  * Add or Update a mob drop temporarily [Akinari]
  3.  * Original Idea By: [Lupus]
  4.  *
  5.  * addmonsterdrop <mob_id or name>,<item_id>,<rate>;
  6.  *
  7.  * If given an item the mob already drops, the rate
  8.  * is updated to the new rate.  Rate cannot exceed 10000
  9.  * Returns 1 if succeeded (added/updated a mob drop)
  10.  *-------------------------------------------------------*/
  11. BUILDIN_FUNC(addmonsterdrop)
  12. {
  13.     struct mob_db *mob;
  14.     int item_id,rate,i,c = 0;
  15.  
  16.     if(script_isstring(st,2))
  17.         mob = mob_db(mobdb_searchname(script_getstr(st,2)));
  18.     else
  19.         mob = mob_db(script_getnum(st,2));
  20.  
  21.     item_id=script_getnum(st,3);
  22.     rate=script_getnum(st,4);
  23.  
  24.     if(!itemdb_exists(item_id)){
  25.         ShowError("addmonsterdrop: Nonexistant item %d requested.\n", item_id );
  26.         return 1;
  27.     }
  28.  
  29.     if(mob) { //We got a valid monster, check for available drop slot
  30.         for(i = 0; i < MAX_MOB_DROP; i++) {
  31.             if(mob->dropitem[i].nameid) {
  32.                 if(mob->dropitem[i].nameid == item_id) { //If it equals item_id we update that drop
  33.                     c = i;
  34.                     break;
  35.                 }
  36.                 continue;
  37.             }
  38.             if(!c) //Accept first available slot only
  39.                 c = i;
  40.         }
  41.         if(c) { //Fill in the slot with the item and rate
  42.             mob->dropitem[c].nameid = item_id;
  43.             mob->dropitem[c].p = (rate > 10000)?10000:rate;
  44.             script_pushint(st,1);
  45.         } else //No place to put the new drop
  46.             script_pushint(st,0);
  47.     } else {
  48.         ShowWarning("addmonsterdrop: bad mob id given %d\n",script_getnum(st,2));
  49.         return 1;
  50.     }
  51.  
  52.     return 0;
  53.  
  54. }
  55.  
  56. /*=======================================================
  57.  * Delete a mob drop temporarily [Akinari]
  58.  * Original Idea By: [Lupus]
  59.  *
  60.  * delmonsterdrop <mob_id or name>,<item_id>;
  61.  *
  62.  * Returns 1 if succeeded (deleted a mob drop)
  63.  *-------------------------------------------------------*/
  64. BUILDIN_FUNC(delmonsterdrop)
  65. {
  66.     struct mob_db *mob;
  67.     int item_id,i;
  68.  
  69.     if(script_isstring(st,2))
  70.         mob = mob_db(mobdb_searchname(script_getstr(st,2)));
  71.     else
  72.         mob = mob_db(script_getnum(st,2));
  73.  
  74.     item_id=script_getnum(st,3);
  75.  
  76.     if(!itemdb_exists(item_id)){
  77.         ShowError("delmonsterdrop: Nonexistant item %d requested.\n", item_id );
  78.         return 1;
  79.     }
  80.  
  81.     if(mob) { //We got a valid monster, check for item drop on monster
  82.         for(i = 0; i < MAX_MOB_DROP; i++) {
  83.             if(mob->dropitem[i].nameid == item_id) {
  84.                 mob->dropitem[i].nameid = 0;
  85.                 mob->dropitem[i].p = 0;
  86.                 script_pushint(st,1);
  87.                 return 0;
  88.             }
  89.         }
  90.         //No drop on that monster
  91.         script_pushint(st,0);
  92.     } else {
  93.         ShowWarning("delmonsterdrop: bad mob id given %d\n",script_getnum(st,2));
  94.         return 1;
  95.     }
  96.  
  97.     return 0;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement