Jump to content

Chaos92

Members
  • Posts

    1606
  • Joined

  • Last visited

  • Days Won

    40

Everything posted by Chaos92

  1. damage of what ? if damage of skill, use db/skill_damage_db.txt https://github.com/rathena/rathena/blob/0b8d80ba63afa5484c606466987107dc4e5b0b0e/db/skill_damage_db.txt
  2. #define RENEWAL Disable this for pre-renewal setting. Thats why. You're still in renewal. If you really wanna use pre-renewal, then disable all the #define RENEWAL in list
  3. 1. add // 2. restart server. Make sure all login, char and map server successfully restarted. This is the important part because its possible to have double map-server (just in case) in active process. 3. go to map and recheck again.
  4. I think what hes wanna ask is about the mob count so that they know how much they need to kill again to summon the 'boss'.
  5. The best way, download again latest rathena : https://github.com/rathena/rathena
  6. I saw the Pull Request for it. Maybe will merged in master later or you can pull it. https://github.com/rathena/rathena/pull/5839
  7. default file rathena wont have that issue. And we didnt know what setup that has you done (i assume its not default latest rathena file). try to install the latest rathena and check it again. https://github.com/rathena/rathena
  8. conf/battle/homunc.conf // The rate a homunculus will get friendly by feeding it. (Note 2) homunculus_friendly_rate: 100 // Can you name a homunculus more then once? (Note 1) hom_rename: no // Minimum intimacy to evo the homunculus homunculus_evo_intimacy_need: 91100 // Reset intimacy after evolution to: homunculus_evo_intimacy_reset: 1000 // Intimacy needed to use Evolved Vanilmirth's Bio Explosion hvan_explosion_intimate: 45000 Increate the friendly rate
  9. its different. because 2020 client support http server for it, not same with older client.
  10. use NPC, requirement to redeem base level 50 or more. and use getitem for anything item that u want in the box.
  11. use older client , such as 20180620 or older. or else use the PR https://github.com/rathena/rathena/pull/5731 for 2020 and latest
  12. that is for ONLY 50. If 50 and above, use >=
  13. SELECT * FROM `item_db_re` WHERE `name_aegis` LIKE '%costume%' Most of costume have 'costume' or 'C_' word in its name in item_db_re_equip.sql
  14. job_exp txt problem. Check there for any changes that you've done. It might because of not enough exp data
  15. your data folder (lua files) have issue. I dont know if it just that, or maybe later will appear another error (maybe). I suggest you to use English Translation from Chris. https://github.com/llchrisll/ROenglishRE Please read the wiki and instruction also.
  16. then try use that. because ive tried that and no issue.
  17. this might because of accessoryid and accname in your GRF or data folder.
  18. This one ? So far ive tried quite a lot creating thor patcher. Theres 2 files I think for config generator which is 'ConfigGenerator' and 'ConfigEmbeder'. If im not mistaken, if Im using ConfigEmbeder will have this issue. Even ConfigEmbeder also alerted as trojan.
  19. getmapxy( .@map$,.@x,.@y,0,.@name$[.@i] ); try change 0 to BL_PC getmapxy( .@map$,.@x,.@y,BL_PC,.@name$[.@i] );
  20. // usage : // [npc:Sample]map#512#10 // [npc:Sample]all#512#123 - script itemall -1,{ OnWhisperGlobal: if( getgroupid() >= 99 ){ // check map if( @whispervar0$ == "all" ) set .@type$,""; else if( @whispervar0$ == "map" ) set .@type$,strcharinfo(3); else { dispbottom "Error, pick 'map' or 'all' "; end; } // check item set .@itemid,atoi( @whispervar1$ ); set .@amount,atoi( @whispervar2$ ); if( getitemname( .@itemid ) == "null" || .@amount < 1 ){ dispbottom "Enter valid item id and amount."; } set .@self_id,getcharid(3); query_sql( "SELECT COUNT(`account_id`) FROM `char` WHERE `online` = 1 ", .@total ); while( .@count < .@total ){ query_sql( "SELECT `account_id`,`name` FROM `char` WHERE `online` = 1 ORDER BY `account_id` LIMIT 128 OFFSET "+.@offset, .@aid,.@name$ ); set .@i,0; set .@size,getarraysize( .@aid ); while( .@i < .@size ){ if( .@aid[.@i] != .@self_id && !checkvending(.@name$[.@i]) ){ if( .@type$ != "" ){ getmapxy( .@map$,.@x,.@y,0,.@name$[.@i] ); if( .@map$ == .@type$ ){ getitem .@itemid,.@amount,.@aid[.@i]; set .@gave,.@gave + 1; } }else{ getitem .@itemid,.@amount,.@aid[.@i]; set .@gave,.@gave + 1; } } set .@count,.@count + 1; set .@i,.@i + 1; } set .@offset,.@offset + .@size; deletearray .@aid,.@size; deletearray .@name$,.@size; } dispbottom "Gave "+.@amount+" x "+getitemname( .@itemid )+" to "+.@gave+" Player(s)."; } end; } usage : whisper to npc:itemall (required groupid 99 or above or edit it in the script). in textbox try type : map#501#1 all#501#1
  21. check your sclientinfo.xml or its might be regarding langtype if they have already installed graphic driver and use setup.exe / opensetup.exe.
  22. use admin account, and login in name.com/?module=voteforpoints add vote sites there. Make sure the 3 sql already run/installed (if im not mistaken, got 2 or 3 sql).
  23. make sure you already use the PR https://github.com/rathena/FluxCP/pull/275. and try use default theme is it okay. maybe its your theme code if its okay in default theme after pull that Pull Request.
  24. just copy the default from fluxcp and replace it depends on each modules needed. Try to do backup first.
  25. Try this pull , it didnt merged yet in master. https://github.com/rathena/FluxCP/pull/275.
×
×
  • Create New...