Jump to content

Bin4ry

Members
  • Posts

    782
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Bin4ry

  1. Got it, didn't notice the wizard. It detects your php.ini setting and stuffs then guide you. Thank you!
  2. I'm on an Abyss Web X2.5 and PHP 5.4.4 not sure which VC am I im. So which ionCube should I download?
  3. Btw, not sure why It couldn't work with your quest shop, I got bugged when enabled both. All those shops only show Jellopy/Apple for no reason. Edit: Figured out, it's the OnInit problem
  4. @euphy: That is in my mind tho, so what I actually meant is to accept/decline but it won't re-roll the quest monsters for you.
  5. Great Hunting Missions script! My suggestion is add a if (select("Accept/Decline") == 2) before forcing player accept mission
  6. Doesn't work tho, those drop flooded the whole map
  7. I knew it's the AA thing, so basicly I just color up all these soft edge to hard color?
  8. Like title. Since ragnarok uses 255 0 255 as transparency, how do you usually deal with the pinky edge from created from photoshop?
  9. Needs fix on Novice Mount facing up, head got chop off
  10. party.conf // Give additional experience bonus per party-member involved on even-share parties? // (eg: If set to 10, a even-share party of 5 people will receive +40% exp) party_even_share_bonus: 0
  11. Am I right doing this to disable drops during waves? OnEnable: enablenpc instance_npcname("#Initial Wave", instance_id()); set 'monscount, 300; setmapflag "1@gvs5",mf_nomobloot; setmapflag "1@gvs5",mf_nomvploot; instance_announce 0,'monscount+" "+'chamonname$+" left",bc_map; monster "1@gvs5",0,0,'chamonname$,'chamonid,30,instance_npcname("#Initial Wave", instance_id())+"::OnMyMobDead"; end; and OnMyMVPDead: instance_announce 0,'npcname$+" : Congratulations! The treasure chest is yours!",bc_map; removemapflag "1@gvs5",mf_nomobloot; removemapflag "1@gvs5",mf_nomvploot; getpartymember('party_id); set 'trecount,$@partymembercount * 'rewardcount; for( set 'i, 0; 'i < ($@partymembercount * 'rewardcount); set 'i, 'i +1 ) { set 'randnum,rand(getarraysize('chamonid5)); monster "1@gvs5",44 + 'i,40,"Treasure Chest",'chamonid5['randnum],1,instance_npcname("#MvP Summoner", instance_id())+"::OnChestBreak"; } end;
  12. Bin4ry

    Pvp Room

    Add these to the script, change guild_vs1 to ur map name guild_vs1 mapflag nowarp guild_vs1 mapflag nowarpto
  13. Bin4ry

    food buffs

    Try sc_start SC_SAVAGE_STEAK,300000,20; to sc_start SC_SAVAGE_STEAK,300000,12;
  14. Of course it's not working because ur SMTP server isn't configured. You must have ur login/pass as the hotmail ID/pass then for SMTP server hostname/port follow settings here, http://www.emailaddressmanager.com/tips/mail-settings.html
  15. How will the RandStats define? Everytime you re-equip ur equipment or like everytime you login?
  16. How could I make the requirement go green instead of red when it met condition. Like Yggdrasil Berry - 80/100ea > Yggdrasil Berry 102/100ea
  17. Hmm now it's working. Thanks both of you. and would you suggest using .var or $var in this case? Like an event NPC setting.
  18. mes "[Emperium Manager]"; mes "Global Prize Distribution:"; mes ((.EmpBrk_PrzDG == 1)?"Enabled":"^FF0000Disabled^000000"); mes "Personal Prize Distribution:"; mes ((.EmpBrk_PrzDP == 1)?"Enabled":"^FF0000Disabled^000000"); next; switch(select("Toggle Global Prize Distribution:Toggle Personal Prize Distribution:Return")) { case 1: if (.EmpBrk_PrzDG == 1) set .EmpBrk_PrzDG, 0; goto L_TPD; if (.EmpBrk_PrzDG == 0) set .EmpBrk_PrzDG, 1; goto L_TPD; case 2: if (.EmpBrk_PrzDP == 1) set .EmpBrk_PrzDP, 0; goto L_TPD; if (.EmpBrk_PrzDP == 0) set .EmpBrk_PrzDP, 1; goto L_TPD; case 3: goto L_GM; } } Like this? Will show Disabled all time.
  19. mes "[Emperium Manager]"; mes "Global Prize Distribution:"; mes (($EmpBrk_PrzDG == 1)?"Enabled":"^FF0000Disabled^000000"); mes "Personal Prize Distribution:"; mes (($EmpBrk_PrzDP == 1)?"Enabled":"^FF0000Disabled^000000"); next; switch(select("Toggle Global Prize Distribution:Toggle Personal Prize Distribution:Return")) { case 1: if ($EmpBrk_PrzDG == 1) set $EmpBrk_PrzDG, 0; goto L_TPD; if ($EmpBrk_PrzDG == 0) set $EmpBrk_PrzDG, 1; goto L_TPD; case 2: if ($EmpBrk_PrzDP == 1) set $EmpBrk_PrzDP, 0; goto L_TPD; if ($EmpBrk_PrzDP == 0) set $EmpBrk_PrzDP, 1; goto L_TPD; case 3: goto L_GM; } } So here's the problem, once I enabled I can't disable it anymore. Not sure where I did wrong, please help!
  20. Are you using an item ID that exceed your src current item limit? Try below 30000, as in default limit is 32k.
  21. There's 3 different Setup.exe in this forum, try to search. If all three doesn't work, it might be your client. Try diff it without [Read Data before GRF] and [Read Lua before Lub]
  22. Why not you just turn it Pre-RE instead of RE?
×
×
  • Create New...