Jump to content

Secrets

Developer
  • Posts

    587
  • Joined

  • Days Won

    44

Everything posted by Secrets

  1. - script bniactrl -1,{ end; OnClock0700: OnClock1900: //OnClockhhmm: Add your start time here OnBossniaStart: announce "your start message",bc_all; enablenpc "Bossnia Staff#7"; end; OnInit: OnClock1000: OnClock2200: //OnClockhhmm: Add your end time here OnBossniaEnd: announce "end",bc_all; disablenpc "Bossnia Staff#7"; mapwarp "bossnia01","SavePoint",0,0; mapwarp "bossnia02","SavePoint",0,0; mapwarp "bossnia03","SavePoint",0,0; mapwarp "bossnia04","SavePoint",0,0; end; }
  2. You can use rAthena's "default" which is 20130807.
  3. This may help solve your problem. https://rathena.org/board/topic/105174-new-character-black-background/#entry299206
  4. ah yes, thank's you its working lol and yeah i already try it on pre-re server and woow its work LOL thank's solved Actually I just noticed I made a typo in the first line. It must be like below instead. if(countitem(501) >= 1) { // Apple 1 ea or if(countitem(501) > 0) { // Apple 1 ea
  5. @[email protected] it can't be explained more than that. Well, replace npc_script_event calls with run_script calls in the source patch.
  6. if(countitem(501) > 0) { // Apple 1 ea delitem 501,1; //dosomething } else { //if player doesn't have required item do this instead. } For SP issue, if your server has renewal enabled. The Champion/Sura won't be able to gain any SP for like 5 seconds after using Asura. Please check if that's the case. However, atcommand @heal bypasses that restriction. So, you can use this code below instead of percentheal. atcommand "@heal";
  7. Select one 2013-08-07a 2013-12-23c 2014-10-22b 2015-05-13a
  8. I think this would do the trick if it's 100% client-sided. clif_map_property(sd, MAPPROPERTY_FREEPVPZONE) This is my playermob mapflag implementation on GitHub. Oh, and here's the diff file if you don't want to deal with Git stuff. Please note that this implementation is untested. Use it at your own risk. Report me problems you run into and I'll see if I can fix it.
  9. I use Atlassian SourceTree to update my server. Try it
  10. In src/config/core.h Uncomment this line. //#define VIP_ENABLE You may also want to adjust some of VIP's feature below that line. Then, recompile your server. For death penalty, you can adjust features like exp/zeny lost in conf/battle/player.conf. Search for: // VIP system You can also check for a player's VIP status using vip_status script command. Example: if(vip_status(1)) { mes "You are a VIP!"; } else { mes "lol random pleb."; } close; Read more about the VIP system here: https://rathena.org/board/topic/89848-official-vip-system/
  11. I replaced OnClock0001: which triggers every midnight (00:01 A.M.) at line 1132 with OnAgitEnd: initnpctimer; end; OnTimer3600000: stopnpctimer; OnAgitEnd: will trigger every time the WoE ends. initnpctimer; will initiate a timer which will trigger later on OnTimer3600000:. OnTimer3600000: means this label will trigger when the timer we initiated reach 3,600,000 milliseconds (1 hour). stopnpctimer; is self-explainated. It stops the timer we initiated earlier. Below my custom code is official treasure chest spawning code which will do its job normally.
  12. Replace your agit_main.txt with mine.
  13. ordeal_3-2,0,0,0 script GRControl -1,{ end; OnMyMobDead: getitem 969,1; //Gold end; } // Spawn 50 Dokebis with 1000 millisecond spawn delay ordeal_3-2,0,0,0,0 monster Dokebi 1110,50,1000,0,"GRControl::OnMyMobDead" // Make the Dokebis drop nothing ordeal_3-2 mapflag nomobloot This script is untested. Use it at your risk.
  14. You can enable `new_account` in login_athena.conf to do that.
  15. I'm not upset or anything. Sorry if it sounds like I'm upset hehe. It's good to see people (and you) contribute to the community. Instead of leeching and go away. You choose to contribute. That's what matter.
  16. well...replace your npc/guild/agit_main.txt with this new one. agit_main.txt
  17. I am aware that my commit is missing something. I have all of items in your link in my private repo already. But, I think my implementations are not 100% matched to official. Activation chances and some other effects are unofficial because there is no reliable source for me to implement them correctly. Thus, I don't submit them in my PR. Thank you for pointing it out, though.
  18. I've created a PR on rAthena repo. https://github.com/rathena/rathena/pull/1087
  19. That's not normal at all. How about opening an issue on git?
  20. Update your item_db. Your database is outdated and this error shouldn't occur on latest rAthena. Edit: SQL based database seems to be not synchronized to match the txt one yet. You may convert one manually using this command. It will update your sql-files/item_db_re.sql. You'll need perl installed on your system to continue. I assume you know how because you even know how to get RO to run on Linux. cd tools convert_sql.pl --i=../db/re/item_db.txt --o=../sql-files/item_db_re.sql --t=re --m=item Then import it into your database as usual. About the black map. That's normal since kRO does weird thing to that map. You better change `start_point` configuration in char_athena.conf to somewhere else.
  21. Revert this commit and try again. You can do so by running this command in your terminal. git revert aea025eca29350d2a38a3c10885bcf7286d6a1c9
  22. Try Ragexe instead of RagexeRE?
  23. Do you have any plan to publish the client's source code? I don't want to see another masterpiece of work left abandoned again. (Shinryo's client)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.