Jump to content

Bin4ry

Members
  • Posts

    782
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Bin4ry

  1. Diff it without Enable Multiple Client? Using latest WeeDiff from http://supportmii.com/ro1/Clients/Weediff2012Pack_v4.7.7z
  2. Uhh... if it's spawning every hour (Exactly :00 minute). If it's not killed by player, then it automatically die and respawn again? What is it point .__.
  3. You need a diffed client to login, not using official RO.exe. Try learning from my signature links. I'd suggest 04-10 client.
  4. Bin4ry

    Bossnia

    Well, I'm just suggesting him to learn and you are somewhat serious about it.
  5. rachel,0,0,0,0 monster Beastman 3014,9,1,1,8,"NPCName::EventName" 150,150,1 script NPCName 53,{ end; EventName: announce "You killed Beastman!"; end; }
  6. You can change the monster's property in db, or duplicate them with non-aggressive property. You can also place them as NPC but monster sprite, using npcwalk command to let them walk.
  7. Well, I can't calculate those thing with percentage but what I can tell is rA updates almost instantly when got new formula (Correct formula info from kRO) and commit changes from eA branch.
  8. Bin4ry

    Bossnia

    Huh? I mean to let him learn, not me ._.
  9. /db/item_delay.txt is for any items.
  10. You said you want EDP Sonic Blow behavior like Renewal but you don't want to enable whole Renewal feature right? This is how you do it then.
  11. Look properly, is #ifndef which mean If NOT Defined.
  12. #ifndef RENEWAL_EDP case AS_SONICBLOW: ATK_RATE(50); case ASC_BREAKER: case ASC_METEORASSAULT: break; #else case ASC_BREAKER: case GC_COUNTERSLASH: case GC_CROSSIMPACT: ATK_RATE(50); // only modifier is halved but still benefit with the damage bonus
  13. In battle.c line 2672: #ifndef RENEWAL_EDP case ASC_BREAKER: case ASC_METEORASSAULT: break; #else case AS_SONICBLOW: case ASC_BREAKER: case GC_COUNTERSLASH: case GC_CROSSIMPACT: ATK_RATE(50); // only modifier is halved but still benefit with the damage bonus You might want to move Sonic Blow before #else.
  14. Any map server errors? Are you using SQL Mob DB instead TXT Mob DB?
  15. Bin4ry

    Bossnia

    I can tell you how to do, but I definitely won't make the whole script for you. No offense but many in rAthena is like, example: They want to do mobile app business but they never learn, and they request from other devs and sell it. 1. The time is given in the script above, change the OnHour like I said in previous post. 2. Put an announce ex: OnHour0257 is fine, or you can toggle another npctimer. 3. The script above already have timer with 1800000 (Which is equivalent to 1800 seconds). 4. Something like this: set .@party_id,getcharid(1); getpartymember(.@party_id,0); if ((.@party_id == 0) || (.@partymembercount < 4) || (.@partymembercount > 10)) { mes "Less or more than 4!"; close; } 5. Something like this: OnPCDieEvent: if ((strcharinfo(3) == "bossnia_01") && (getcharid(1) != 0)) { set @id,getcharid(1); warpparty "prontera",150,100,@id; } end; 6. Something like this: if (BaseLevel < 150) close; 7. Something with these commands: if (getgmlevel >= 99) { .... donpcevent "Bossnia Warper::OnEnable"; } OnEnable: set .BossOn, 1; announce "Bossnia opened!",bc_all; end; } 8. bossnia_01 mapflag pvp 9. /db/re/item_noequip.txt then put a mapflag with following flag ID. 10. Just add a getitem command in OnTimer1800000 label.
  16. brAthena is mirror of rA with translation is it shouldn't put in the list. rA definitely has the latest changes, updates.
  17. Bin4ry

    Bossnia

    That was copied from his script, I also added a select menu to set @i for 1 to 4.
  18. You can't rename a .GAT file just by Right Click > Rename, you will need to hex the file and search for ur filename string and change it or an easier way is open with BrowEdit and save as other name.
  19. Are you using latest rA SQL or eA TXT?
  20. Bin4ry

    Bossnia

    Because it wasn't activated yet, I didn't add GM panel coz I just simply wrote the script. Change the time on those "OnHourXXXX", when it activates you will able to talk to him.
  21. Change it into atcommand "@killmonster2";
  22. Bin4ry

    Bossnia

    ............ Can you tell what is shown on map server?
  23. You can try this script: OnNPCKillEvent: if (BaseLevel >= 150) getexp - getmonsterinfo(killedrid,3), - getmonsterinfo(killedrid,4); end; Somehow feels like AnnieRuru gonna come in and shoots at me
×
×
  • Create New...