Jump to content

GiovanT

Members
  • Posts

    45
  • Joined

  • Last visited

Community Answers

  1. GiovanT's post in Auto get stuff after killing a MVP was marked as the answer   
    - script #mvp_drop -1,{ OnNPCKillEvent: if (getmonsterinfo(killedrid,22)) // If mob has MOB_MVPEXP, it's an MVP. if (rand(0) < 0) //chnage % as your needs getitem 603,0; // your item id here } still same, i still auto got OBB after kill ifrit
    i dont wanna get that OBB or specific item, i wanna to turn it off
  2. GiovanT's post in Is there a way to increase Exp at night? was marked as the answer   
    - script DayNight -1,{ OnClock0600: announce "Disgusting morning!",bc_blue|bc_all; day; setbattleflag "base_exp_rate", .bexp_rate*100; end; OnClock2300: announce "Disgusting night!",bc_blue|bc_all; night; setbattleflag "base_exp_rate", .bexp_rate*100 * 2; end; OnInit: set .bexp_rate, 300; //Change that 300 to your server exp rate if(gettime(3)>=6 && gettime(3)<23) end; else night; end; } try that
  3. GiovanT's post in Card Trader was marked as the answer   
    change ->  if (@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700) {
    to ->  if (@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700 || @sold_nameid[.@i] > 20000 && @sold_nameid[.@i] < 20022) {
×
×
  • Create New...