Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by sader1992

  1. you can't use (Baselvl) variable while OnInit it's a Character variable not npc variable remove this line
  2. if you didn't knew upload post your battle.cpp and battle.hpp here
  3. subnet: 255.0.0.0:127.0.0.1:127.0.0.1 with my first post is the fix otherwise i would tell you to re check them [again] i don't see any other thing may do this problem
  4. char_conf login_ip: 127.0.0.1 char_ip: public ip map_conf char_ip: 127.0.0.1 map_ip: public ip
  5. remove the mouse file in your custom grf ,if you don't use one update your data/rdata.grf
  6. the fact that it's rAmod then it may be 2~3 rathena years old or maybe even more and edited too so i can't help (maybe) there is some option in the conf doing that ? i suggest you wait for someone did get this problem or know what is causing , it it may take some time i also suggest you talk to who publish it from where you downloaded it i think it would be your best option
  7. try like this please 1 Use Tilde for Matk 3 Chat Flood Remove Limit 8 Custom Window Title 9 Disable 1rag1 type parameters (Recommended) 13 Disable Ragexe Filename Check (Recommended) 16 Disable Swear Filter 18 Skip Service Selection Screen 19 Enable Title Bar Menu 23 Enable /who command (Recommended) 24 Fix Camera Angles (Recommended) 28 Increase Headgear ViewID 32 Increase Zoom Out Max 33 Always Call SelectKoreaClientInfo() (Recommended) 34 Enable /showname (Recommended) 35 Read Data Folder First 36 Read msgstringtable.txt (Recommended) 37 Read questid2display.txt (Recommended) 38 Remove Gravity Ads (Recommended) 39 Remove Gravity Logo (Recommended) 40 Restore Login Window (Recommended) 41 Disable Nagle Algorithm (Recommended) 44 Translate Client (Recommended) 46 Use Normal Guild Brackets (Recommended) 47 Use Ragnarok Icon 48 Use Plain Text Descriptions (Recommended) 49 Enable Multiple GRFs (Recommended) 50 Skip License Screen 53 Use Ascii on All LangTypes (Recommended) 64 @ Bug Fix (Recommended) 65 Load Custom lua file instead of iteminfo*.lub (Recommended) 73 Remove Hourly Announce (Recommended) 75 Enable Flag Emoticons 76 Enforce Official Login Background 84 Remove Serial Display (Recommended) 85 Show Cancel To Service Select 88 Allow space in guild name 90 Enable DNS Support (Recommended) 96 Remove GM Sprites 97 Cancel to Login Window (Recommended) 101 Skip Friend list Cheat Check 102 Skip Guild Member Cheat Check 212 Restore Roulette 213 Disable Help Message on Login (Recommended) 222 Show Replay Button
  8. at the start of for loop inside the main function in iteminfo if not (DESC.costume) then DESC.costume = false end
  9. it's just a new server for kro i don't see any new features only some new maps and quests and npcs it's like iro:restart
  10. this problem mean the entry point function in the file (that the client needed) not found in your client folder try to update your client (get the last .dll files from an updated client folder)
  11. what i did see in the video it can be the same for packet loss and high ping >> also fail to update the monster position << don't know if there is conf or setting for it i did also notice that only the monsters type(boss) are doing that maybe also the monsters speed but i don't think you did edit the monsters speed in the database can you privide more information ? client date , rathena hash , and modification
  12. i don't think this would work as you want it OnInit: disablenpc strnpcinfo(3); set 'talking, 0; end; OnInit is on server load so the instance didn't loaded yet and the 'variable wont work like that what i see in your error is with ('talking) variable so try to follow the error with that keyword and you will fix it
  13. if ("FL_"+.@izlnpc$ <= 19){ to if (getd("FL_"+.@izlnpc$) <= 19){ also you would need to remove the space between .npcf and $; .npcf $; >> .npcf$;
  14. `acc_reg_num` `acc_reg_str` `achievement` `auction` `bonus_script` `buyingstores` `char_reg_num` `char_reg_str` `global_acc_reg_num` `global_acc_reg_str` `guild_member` `guild_skill` `guild_storage` `homunculus` `mail` `memo` `mercenary_owner` `pet` `quest` `vendings` those too anything related to char_id and account_id and variables too
  15. 19 for arabic +-----+------------------------+-------------------+ | int | enum SERVICETYPE | "servicetype" tag | +-----+------------------------+-------------------+ | 0 | SERVICETYPE_KOREA | korea | | 1 | SERVICETYPE_AMERICA | america | | 2 | SERVICETYPE_JAPAN | japan | | 3 | SERVICETYPE_CHINA | china | | 4 | SERVICETYPE_TAIWAN | taiwan | | 5 | SERVICETYPE_THAI | thai | | 6 | SERVICETYPE_INDONESIA | indonesia | | 7 | SERVICETYPE_PHILIPPINE | philippine | | 8 | SERVICETYPE_MALAYSIA | malaysia | | 9 | SERVICETYPE_SINGAPORE | singapore | | 10 | SERVICETYPE_GERMANY | germany | | 11 | SERVICETYPE_INDIA | india | | 12 | SERVICETYPE_BRAZIL | brazil | | 13 | SERVICETYPE_AUSTRALIA | australia | | 14 | SERVICETYPE_RUSSIA | russia | | 15 | SERVICETYPE_VIETNAM | vietnam | | 17 | SERVICETYPE_CHILE | chile | | 18 | SERVICETYPE_FRANCE | france | | 19 | SERVICETYPE_UAE | uae | +-----+------------------------+-------------------+ for more info https://github.com/rathena/rathena/wiki/Clientinfo.xml
  16. you remove the if else and clif_displaymessage(fd, output); and leave clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); like this for (i = 0; output_table[i].format != NULL; i++) { sprintf(output, output_table[i].format, output_table[i].value); clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); } and also you may want to change the clif_displaymessage(fd, output); that before the for loop that the first line >> '%s' stats: = 'char name' stats: and the last result would be from clif_displaymessage(fd, output); for (i = 0; output_table[i].format != NULL; i++) { sprintf(output, output_table[i].format, output_table[i].value); clif_displaymessage(fd, output); } to clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); for (i = 0; output_table[i].format != NULL; i++) { sprintf(output, output_table[i].format, output_table[i].value); clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); }
  17. under the code you wrote at for loop this example for HP in Red from this for (i = 0; output_table[i].format != NULL; i++) { sprintf(output, output_table[i].format, output_table[i].value); clif_displaymessage(fd, output); } to this for (i = 0; output_table[i].format != NULL; i++) { sprintf(output, output_table[i].format, output_table[i].value); if (output_table[i].value == sd->status.hp) { clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); } else { clif_displaymessage(fd, output); } } INFO >> the color_table is enum clif_colors { COLOR_DEFAULT, COLOR_RED, COLOR_WHITE, COLOR_YELLOW, COLOR_CYAN, COLOR_LIGHT_GREEN, COLOR_MAX }; #define clif_messagecolor(bl, color, msg, rgb2bgr, type)
×
×
  • Create New...