Jump to content

nanakiwurtz

Members
  • Posts

    1654
  • Joined

  • Last visited

  • Days Won

    66

Everything posted by nanakiwurtz

  1. I think your client date is not supported yet. Use a lower client version instead. For tutorial, you can check out the Wiki --> https://rathena.org/wiki/
  2. In the meantime, you can try using lower version of Visual Studio, 2009-2013.
  3. /quake means the screen shaking effect from Monk skills?
  4. Ba..Ba..Baaa.... Ba..Ba..nana!

  5. Can we implement auto import for upgrade_*.sql Each server start, it will scan folder /sql-files/upgrades/ and compare to a new table. If a new file is detected, it will import the sql to table and write the filename as a new entry. File upgrades_????????.sql will be imported to table according to inter_athena.conf or /import/inter_conf.txt -> login_server_db File upgrades_????????_log.sql will be imported to table according to inter_athena.conf or /import/inter_conf.txt -> log_db_db
  6. Maybe it's from your 'char_athena.conf' // Name used for unknown characters unknown_char_name: ??????
  7. I never saw things like that before
  8. It's said that the 2014 client has already patched with some patches (which I don't know which one), so it's not a plain/clean client just like the others.
  9. Or you can just use.. - script ServerAnnouncement -1,{ OnInit: OnTimer1200000: //every 20mins initnpctimer; announce "Feel free to use @request if you have any concerns regarding the game.",bc_all,"0x70dbdb"; end; }
  10. //===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.0 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Basic healer script. //============================================================ - script Healer 909,{ if (getbrokenid(1)) repairall; getinventorylist; while (.@i < @inventorylist_count) { if (!@inventorylist_identify[.@i]) { delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@i],1; } .@i++; } .@t = 0; // Delay Seconds. if (!@h) { @h = 1; .@hp = MaxHP-HP; while (.@t) { dispbottom "Wait for "+.@t+" second"+((.@t>1)?"s":"")+"."; sleep2 1000; .@t--; } if (Zeny<10000) { dispbottom "You don't have enough Zeny for the Service!"; end; } Zeny -= 10000; dispbottom "10,000z was removed for healing payment."; percentheal 100,100; specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; @h = 0; } end; }
  11. Bye Themon, and good luck!
  12. Hello there, I have a question that bugs me for long time. That is about the 'getpartymember' behavior, why does it needs to put the result into an array of temporary global variables What I saw from numerous scripts around is that we have to use getpartymember + copyarray just to move it somewhere else, so it won't be overwritten with new data. And also for the 'type', do we need to specify 1 or 2 everytime? Can it just accept 3 as bitmask? Or just remove the 'type' completely If this suggestion is considered as useful and someone starts to rewrite the code, then I guess we still have to maintain backward compatibility... Thank you
  13. Hello, if you feel that this is a bug, please submit a report on GitHub Issues instead, thank you
  14. @@Moriarty, maybe what Aleos means is the array which holds the query_sql result will be able to hold up to 2 billion, but the result of query_sql itself still won't exceed 128.
  15. Does it affect the return value of query_sql as well
  16. Yes it is, but the repo is still exist on https://github.com/takari1994/CORA
×
×
  • Create New...