MobItemManager.txt
上传用户:santakups8
上传日期:2021-03-23
资源大小:544k
文件大小:4k
源码类别:

模拟服务器

开发平台:

Asm

  1. ///////////////////////////////////////////////////////
  2. //---------------------------------------------------//
  3. //              Monster Item Manager                 //
  4. //                     VeMU                          //
  5. //---------------------------------------------------//
  6. ///////////////////////////////////////////////////////
  7. //****************************************************************//
  8. // File for manage items that are blocked for all monsters        //
  9. // Or for all events example:                                     //
  10. // if you block items for the DS event, this item will be blocked //
  11. // for the DS monsters ONLY WHEN THE EVENT START.                 //
  12. //                                                                //
  13. // You dont have a limit for add items.                           //
  14. // But in order to keep order i recommend you to add              //
  15. // items till the end of line or before and if you want to add    //
  16. // more then add it in another "instance".                        //
  17. //                                                                //
  18. // Instances are terminated with the "end" string.                //
  19. // And the the "Separator" is "Events" string when you end        //
  20. // defining the items.                                            //
  21. //                                                                //
  22. //****************************************************************//
  23. //-----------------------------------------------------------
  24. // Example 1, i just put one item to be blocked for all mobs
  25. //----------------------------------------------------------------------------
  26. // ItemType    ItemIndex      Separator        DS    BC   CC
  27. //----------------------------------------------------------------------------
  28.     13           14            Events          0     0     0
  29. end
  30. //----------------------------------------------------------------------------
  31. // Example 2, i just put one item to be blocked for all mobs of the DS event
  32. // But only when the DS event start, for the rest of time is non blocked.
  33. //----------------------------------------------------------------------------
  34. // ItemType    ItemIndex     Separator         DS    BC   CC
  35. //----------------------------------------------------------------------------
  36.     14           11          Events            1     0     0
  37. end
  38. //----------------------------------------------------------------------------
  39. // Example 3, i just put one item to be blocked for all mobs of all events
  40. // But only when those events starts.
  41. //----------------------------------------------------------------------------
  42. // ItemType    ItemIndex     Separator         DS    BC   CC
  43. //----------------------------------------------------------------------------
  44.     14           11          Events            1     1     1
  45. end
  46. //----------------------------------------------------------------------------
  47. // Example 4, i put alot of items to be blocked for all mobs of all events
  48. // But only when those events starts
  49. //------------------------------------------------------------------------------------------------------------
  50. // ItemType    ItemIndex  ItemType  ItemIndex ItemType IntemIndex    Separator     DS    BC   CC
  51. //------------------------------------------------------------------------------------------------------------
  52.     14           11          13       12        11       10          Events        1     1     1
  53. end
  54. //----------------------------------------------------------------------------
  55. // Example 4, i put alot of items to be blocked for all mobs of all events
  56. // But only when those events starts
  57. //------------------------------------------------------------------------------------------------------------
  58. // ItemType    ItemIndex  ItemType  ItemIndex ItemType IntemIndex    Separator     DS    BC   CC
  59. //------------------------------------------------------------------------------------------------------------
  60.     15           11          13       12        11       10          Events        1     1     1
  61. end