Jump to content

WhiteEagle

Members
  • Posts

    489
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by WhiteEagle

  1. no solutions?
  2. src/map/atcommand.c Search for @go /*========================================== * @go [city_number or city_name] - Updated by Harbin *------------------------------------------*/ and change this: { MAP_JAIL, 23, 61 }, // 16=Prison
  3. Base, Job, MvP and NPC (Quest) is 5x.
  4. Hi guys, I don't know why, but I don't get the right exp when a monster killed. I want that he gets 50% more exp when a monster killed with the "Flag" OnKILLBonus. Here's my excample: OnKILLBonus: set @BonusBase,50; set @BonusJob,50; getexp (getmonsterinfo(killedrid,3) * @BonusBase / 100), (getmonsterinfo(killedrid,4) * @BonusJob / 100); I test it with Spores (I have 5x rates at my server). Normal Exp = 585 With 50% Bonus = 1460 o.O (585*50/100 = 292,5 + 585 = 877,5) How does this number?
  5. Well, here is rAthena. Sandbox using rAthena emulator, because of that its written for rathena.
  6. You can add more Dungeon warps. /* ----------------------- Dungeons - */ StartNode("Dungeons"); SetColor("0890D4"); Exploration(0); AddMap("Abyss Lake", "abyss_01", 262, 272); AddMap("Amatsu Dungeon", "ama_dun01", 229, 10); AddCondition("_warper_chk_amatsu"); AddMap("Ant Hell", "anthell01", 32, 262); AddMap("Ancient Shrine", "ayo_dun01", 275, 18); AddCondition("_warper_chk_ayothaya"); StartNode("Beach Dungeon"); AddMap("Karu, the West cave", "beach_dun", 266, 67); AddMap("Ruande, the Northern cave", "beach_dun2", 154, 25); AddMap("Mao, the East cave", "beach_dun3", 23, 260); EndNode(); AddMap("Bio Laboratory", "lhz_cube", 232, 17); AddCondition("_warper_chk_biolab"); AddMap("Brasilis Dungeon", "bra_in01", 206, 182); AddMap("Coal Mine", "mjo_dun01", 52, 17); AddMap("Einbroch Mine", "ein_dun01", 21, 16); AddMap("Undersea Tunnel", "iz_dun00", 168, 168); EndNode();
  7. Hi, I don't know why, but it don't work for me.
  8. prontera,50,50,3 script NPC_Name 700, { OnInit: bindatcmd "npc1",strnpcinfo(3)+"::OnAtNPC1"; OnAtNPC1: mes "Hi "+strcharinfo(0)+"; mes "How can I help you?"; close; } Let me know if it right.
  9. I don't know if I understand you right, but here my excample: - script NPC_Caller -1, { bindatcmd "npc1",strnpcinfo(3)+"::OnAtNPC1"; bindatcmd "npc2",strnpcinfo(3)+"::OnAtNPC2"; OnAtNPC1: getmapxy "@map$,@x,@y,0; unitwarp getnpcid(0),"@map$",@x,@y; end; OnAtNPC2: getmapxy "@map$,@x,@y,0; unitwarp getnpcid(0),"@map$",@x,@y; end; } prontera,0,0,0 script NPC_1 1234, { mes "Why you called me?"; close; } prontera,0,0,0 script NPC_2 1234, { mes "Why you called me?"; close; } Not tested.^^
  10. Is it possible when a player joins a guild that all character in the same guild and consume only 1 slot? Like in the game Guild Wars. Example: Player1a occurs in the guild and automatically are players1b and players1c in the guild. But only the player who is currently online, is displayed in the guild. Thanks in advance. Any solutions?
  11. You need to update your rAthena.
  12. Yea.. A NPC Point-Trader or couple with OnPcLoginEvent was my last suggestion. T_T
  13. bump
  14. No Problem. Have a nice day. ^^
  15. Hey guys, How can I change this, that can be used "credits" from the Flux-CP instead of #cashpoints?
  16. Normaly not. All players who are over Lv.99 be downgraded again on Lv.99. It may be that the stat points spent on the higher level, are available again and thus have to many then.
  17. Yes, it applies to all accounts. (GM Account too) Liefde groeten na België
  18. No problem.
  19. You need to set MD5 on in rAthena. conf/login_athena.conf // Store passwords as MD5 hashes instead of plain text? // NOTE: Will not work with clients that use <passwordencrypt> use_MD5_passwords: yes
  20. I've ask it too for few days. http://rathena.org/board/topic/91949-server-protection/
  21. If you have the latest revesion, you can changed it by conf/battle/player.conf Change: // Will display rate information (EXP, Drop, and Death penalty message)? (Note 1) vip_disp_rate: yes To: // Will display rate information (EXP, Drop, and Death penalty message)? (Note 1) vip_disp_rate: no
  22. Hm.. nja gut bei Windows Server kann ich dir nicht wirklich weiterhelfen sry. Mein erster Server hab ich auch auf Windows aufgebaut und nur Probleme gehabt. Daher bin ich auf Linux umgestiegen und seitdem ist alles einfacher.^^ Tut mir echt leid das ich nicht weiterhelfen kann. Wünsche Dir/Euch dennoch viel Erfolg.
  23. Habt ihr nen Windows oder nen Linux Server? Welchen emulator nutzt Ihr?
  24. I've it not tested, but try it like this way. I don't know what you trying out exactly, so I script only an excample. map,x,y,0 script Test Room#IPcheck 837,{ end; OnInt: waitingroom "Channel Name",20,"Test Room#IPcheck::OnStart",1; end; OnStart: attachrid($@accountid[0]); end; }
×
×
  • Create New...