Jump to content

Cydh

Developer
  • Posts

    2285
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by Cydh

  1. make sure everything are written correctly for conf/inter_athena.conf#L28-L65. // MySQL Login server login_server_ip: 127.0.0.1 login_server_port: 3306 login_server_id: ragnarok login_server_pw: ragnarok login_server_db: ragnarok login_codepage: login_case_sensitive: no ipban_db_ip: 127.0.0.1 ipban_db_port: 3306 ipban_db_id: ragnarok ipban_db_pw: ragnarok ipban_db_db: ragnarok ipban_codepage: // MySQL Character server char_server_ip: 127.0.0.1 char_server_port: 3306 char_server_id: ragnarok char_server_pw: ragnarok char_server_db: ragnarok // MySQL Map Server map_server_ip: 127.0.0.1 map_server_port: 3306 map_server_id: ragnarok map_server_pw: ragnarok map_server_db: ragnarok // MySQL Log Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: ragnarok log_db_db: ragnarok log_codepage: log_login_db: loginlog since 2d2991a we cleaned TXT server leftovers, and some changes made for server config files.
  2. I was playing to make like this. basically duplicating skill_require_db.txt for certain map, by using flag just like item_noequip (restricted zone) does.
  3. Cydh

    rather than send @Akkarin a PM, you should spam him!
  4. I can't promise this will be added officially on emulator, but I can put this to my fork so easier to manage it keep up-to-date
  5. ahh great, the problem now is, mmo_charstatus limit. I tried with add unsigned int 'cardval0 ~ cardval3' to store time limit or bound type reduced MAX_STORAGE from 600 to 300
  6. 1st, fun, if u request so I just do what the diff file exists on the post that u link. sorry ur post is late to make up my mind, and because I have 2nd reason. 2nd, actually I know the full effect list. (because PS owner that has that custom effects requested as paid service from me, I never give away a paid service changes)
  7. I asked for a explanation of effect got these and finally give this https://db.tt/V6bnVaII
  8. try Guild Configs & Script Commands
  9. Actually as follow up of my Pull: 86 and some idea from rAthena Guild Conf Request Config Updates: Changes 'emblem_woe_change' to 'disable_change_emblem' & added some options Added 'create_guild' to enable/disable guild creation by player. Added 'break_guild' to enable/disable break a guild by player. Added 'disable_invite' to enable/disable guild invitation by player. Added 'disable_expel' to enable/disable guild expulsion by player. Script Command Updates Added 'guild_info' to retrieve specified guild information from a given guild (name or ID). The available info by type are: Get guild information by given 'type': GINFO_NAMEID :If guild_id used, returns "guild name" or "" if not found. If "guild name" used, returns guild_id or -1 if not found GINFO_LEVEL : Guild level GINFO_ONLINE : Connected member GINFO_MAX : Max members GINFO_AVERAGE : Average member level GINFO_ALLY : Allies number, also returns .@ginfo_ally_id[] Ally Guild IDs .@ginfo_ally_name$[] Ally Guild Names GINFO_ENEMY : Enemy number, also returns .@ginfo_enemy_id[] Enemy Guild ID .@ginfo_enemy_name$[] Enemy Guild Name GINFO_CASTLE : Castles, also returns .@ginfo_castle_id[] Castle ID .@ginfo_castle_name$[] Castle Name Added 'guild_create' to create a new guild. (Ignore 'create_guild' config value) Added 'guild_addmember' to add new member to a guild. (Ignore 'disable_invite' config value) Added 'guild_delmember' to remove/kick/expel a guild member from a guild. (Ignore 'guild_expel' config value) Added 'guild_changegm' to change guild master from a guild. Added 'guild_break' to break a guild. Like @breakguild or /breakguild, guild must be empty first. (Ignore 'break_guild' config value) Download: Git Hash: 870273e : script_guild-rA-870273e4.diff
  10. bantu ngeprint skrin dr idRO jg boleh.
  11. you know, there's un-consistency on BG_CHARID, first you decided on battleground.h then u redefine on script that might the value maybe different. maybe better if: BG_CHARID as constant in src/map/script.c#L2318, script_set_constant("BG_CHARID",BG_CHARID,false); or, make script command 'getitemgb' so the card0~3 assignment will be done here, easier for user to use maybe.
  12. today from #rstaff
  13. Even char_id, account_id, & npc_id is overlapped, it doesn't matter, because they used for different matters. Well besides minimum char_id value that we believe is as AEGIS style, however, don't ever make it less than 256, as we can see, in some case, item that impossible to have slots (forged, named, egg) NEEDS card[0] for CARD0_ src/map/itemdb.h#L28-L30 So, afaik, don't ever make the minimum ID less than 256, for now. and btw, so we can judge that script has wrong behavior then, to check if the items is BG items (but it's not official issue here)
  14. create a PR please, people freely make new PR about bug fix/improvement why "Akkarin FluxCP"? I just found that statement discredit contributors.
  15. I'm using kRO Ragexe 2013-08-07a, diffed by using NEMO. Just need to open NEMO (after u download it), choose the client.exe -> load patch -> select recommendation, and patch. done
  16. nih kurang memuaskan hasilnya http://rathena.org/board/topic/96611-failure/ msing2 1/2 lusin yang bunder masih bagus gan, tapi kayaknya agak pecah ya, maksudnya resolusinya iya pecah, parah sangat tapi kalau lihat International Support selain Indo/Malay, mereka lebih ramai. :up: :up: ciyus? --------- btw, translation project yuk, bwt Flux. https://github.com/rathena/FluxCP/tree/master/lang Indonesian id_ID Malay ada dua, Malay-Brunei ms_BN, Malay-Malaysian ms_MY. Source
  17. fair and square. :v

  18. add this maybe at char.c::char_check_char_name // check for reserved names if( strcmpi(name, charserv_config.wisp_server_name) == 0 ) return -1; // nick reserved for internal server messages + // Failed if char name has 'GM' (case-sensitive) + if (strstr(name, "GM")) + return -1; // Check Authorised letters/symbols in the name of the character if( charserv_config.char_config.char_name_option == 1 )
  19. Cydh

    update info

    do u mean this commit list https://github.com/rathena/rathena/commits/master ?
  20. hmm, except someone explain the each bonus given, a bit lost in the first diff --- src/map/battle.c (revision 16822) +++ src/map/battle.c (working copy) @@ -1222,6 +1222,10 @@ damage += damage*sd->weapon_atk_rate[sd->weapontype1]/100;; } } + + if (flag&4 && sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_WIZARD) + damage += damage*150/100; + return damage; }
  21. nih kurang memuaskan hasilnya http://rathena.org/board/topic/96611-failure/ msing2 1/2 lusin
  22. @dhanXs ga ada Job 4 broh. Job 4 bahasanya anak2 idRO (seenaknya main sebut) yg ada job 3. (nah klo di idRO "job 3" dipake bwt sebut job 2 Trans/Rebirt ) kalo pake file kRO & updated, lengkap kok.
  23. kmren cb bkin gantungan kunci akrilik "rAthena", tp pas dpt jelek produksinya. sakit ati. nama FBnya? blkgan byk yg add FB, tp g ada yg tau sapa, ya sy diemin aja jadinya
  24. @Lelouch vi Britannia 3. They just need some sprites for custom purpose. Like some old trends, changes 2nd Trans by using 3rd. And such GS -> Rebellion so ur files. spr, act, and skill files needed?
×
×
  • Create New...