Jump to content

AHMADSHIDQI

Members
  • Posts

    64
  • Joined

  • Last visited

Everything posted by AHMADSHIDQI

  1. tell me how to fix it bro? @rmon
  2. What should i do? its says but i already to change /logs to 0600, 0777, etc, but still same @@ maybe someone can help me? @@ im confused about this problem @@, im using CentOS 7,
  3. Its possible if i want make skill ex. EDP using 2 ITEM? 678 OR 41000(Only at PVP) i already tried to add 41000 in item_noequip.txt but if i use EDP skill its still work, @@ maybe someone can help me to change this? thanks before...
  4. please fix enable 64k hairstyle bro u,u, ned more hairstyle for 2017 client ><
  5. Maybe someone can help me to add new GroupID for item_package? i have already tried guide, but i thinks theres new update in rA, i cant find #MAXRANDOMGROUP in itemdb.h, and noone config about IG_* in const.txt >.<, always error say Invalid Group ID.... ive tried to adding this at itemdb.h then recompile IG_SAPPHIRE_EGG, IG_IDN_HEART_SCROLL, IG_IDN_WISDOM_EGG, IG_CHRISTMAS_BOX, IG_SPECIAL_CHRISTMAS_BOX, IG_SANTA_GIFT, IG_LGLUCKY1, IG_LGLUCKY2, IG_LGLUCKY3, but still say invalid group id :((, doc https://github.com/rathena/rathena/blob/master/doc/item_group.txt say See the "Item Group ID" section in 'db/const.txt'. but noone Item Group ID ther @@ and heres my import/item_package.txt IG_LGLucky1,50901,55,50,1 IG_LGLucky1,13607,20,2,1 IG_LGLucky1,12208,20,5,1 IG_LGLucky1,14592,20,5,1 IG_LGLucky1,13894,20,1,1 IG_LGLucky1,13893,20,1,1 IG_LGLucky1,13892,20,1,1 IG_LGLucky1,13891,20,1,1 IG_LGLucky1,51239,5,1,1 sorry for my bad english :)) Fixed By Self~, after patch https://github.com/rathena/rathena/commit/127c13bbdd6c1fb5b708605fc4f6a7f44bc2398d IG_* moves to itemdb.h and scripts_constats.h Thanks~
  6. A good way to check this would be to use a port script on your website. Throw this code into a php file and visit it in your browser: $timeout = "1"; $portgen[1] = "6900"; $servicegen[1] = "Login:"; $ipgen[1] ="ip"; $portgen[2] = "1234"; $servicegen[2] = "Char:"; $ipgen[2] ="ip"; $portgen[3] = "1235"; $servicegen[3] = "Map:"; $ipgen[3] ="ip"; $portgen[4] = "3306"; $servicegen[4] = "SQL:"; $ipgen[4] ="ip"; $portgen[5] = "80"; $servicegen[5] = "Self:"; $ipgen[5] ="127.0.0.1"; $portsgen = count($portgen); $portsgen = $portsgen + 1; $countgen = 1; $main = ""; while($countgen < $portsgen){ $fpgen = @fsockopen("$ipgen[$countgen]", $portgen[$countgen], $errno, $errstr, $timeout); if (!$fpgen) { $main .= "$servicegen[$countgen] <font color='red'>Offline</font> "; } else { $main .= "$servicegen[$countgen] <font color='green'>Online</font> "; fclose($fpgen); } $countgen++; } $main .= ""; print $main; If the first three say offline, when your server is clearly running, then your webhost has only opened up particular ports (ftp, ssh, sql, etc). This is quite common amongst hosting providers that know what they're doing. wheres i should put in? in localhost? where? hmm can u give me tutorial? u,u
  7. already check port, its ok no prob with my port
  8. Someone can help me? im using 1 WebHost and 1 VPS 1 Webhost for my CP 1 VPS for my server i already setup and WebHost can connect SQL to my server, BUT when i start my server, - login - char - map cant detect status online server, but still can detect player online, maybe someone can help me how to fix it? so CP in my webhost can detect login,char,map as ONLINE(Green Light), i already setup PORT and hostname in my Flux Config, but still cant detect as Online u,u
  9. ya im using pre-re, how to fix it? hmm hmm
  10. I got this error with rAthena latest [Error]: skill_parse_row_requiredb: Invalid item 1 for skill 2257. [Error]: sv_readdb: Could not process contents of line 683 of "db/pre-re/skill_require_db.txt". and after i compiled server i got this skill.c: In function ‘skill_parse_row_requiredb’: skill.c:20304: warning: array subscript is above array bounds skill.c:20305: warning: array subscript is above array bounds please help me to fix them
  11. i dunnow sir, but in console no shown warning error sql or something, but the script still not work x_x, never insert sql to daily_reward, but still no warning x_x
  12. i already test but still same @@, always never insert sql to daily_reward table @@
  13. can u share your tables of daily_reward? hmm
  14. still not working sir, btw how about with this line too? hmm OnHour06: query_sql "truncate daily_reward"; end; ??
  15. can you be more specific? error at you console? its not error, without error, but scirpt in case 1 not work, dunnow, never insert query_sql "insert into `daily_reward` values ( "+getcharid(3)+" )"; and never read if ( !query_sql( "SELECT `account_id` FROM `daily_reward` WHERE `account_id` ="+ getcharid(3) , .@acc )
  16. // Original Script by Ahmad // RAO Dungeon prontera,161,193,5 script RAO Dungeon 406,{ mes "[RAO Dungeon]"; mes "Hm...?"; mes "Are you sure want to enter Dungeon?"; mes "You need 1 Ticket Dungeon,"; mes "and PVP Allowed in this map,"; next; mes "[RAO Dungeon]"; mes "You must care, and be better you"; mes "Enter Dungeon with your party."; next; mes "[RAO Dungeon]"; mes "You can request 3 ticket everyday,"; mes "And reset every 06.00am."; next; switch(select("Request Ticket:Dungeon Lv60-80:Dungeon Lv81-100:Dungeon Lv101-120:Cancel")) { case 1: if ( !query_sql( "SELECT `account_id` FROM `daily_reward` WHERE `account_id` ="+ getcharid(3) , .@acc ) ) { getitem 21000,3; dispbottom "Gained 3 RAO Instance Ticket."; query_sql "insert into `daily_reward` values ( "+getcharid(3)+" )"; } else { mes "[RAO Dungeon]"; mes "You wait must until reset."; mes "at 06.00am."; } close2; break; case 2: if ( countitem(21000) >= 1 && BaseLevel >= 60 && BaseLevel <= 80) { mes "[RAO Dungeon]"; mes "I Hope you enjoyed!."; next; warp "80@RAO_in",104,250; delitem 21000,1; } else { mes "[RAO Dungeon]"; mes "Only Lv60-80 can enter Dungeon."; mes "And you need 1 Ticket."; } close2; break; case 3: if ( countitem(21000) >= 1 && BaseLevel >= 81 && BaseLevel <= 100) { mes "[RAO Dungeon]"; mes "I Hope you enjoyed!."; next; warp "100@RAO_in",141,184; delitem 21000,1; } else { mes "[RAO Dungeon]"; mes "Only Lv60-80 can enter Dungeon."; mes "And you need 1 Ticket."; } close2; break; case 4: if ( countitem(21000) >= 1 && BaseLevel >= 101 && BaseLevel <= 120) { mes "[RAO Dungeon]"; mes "I Hope you enjoyed!."; next; warp "120@RAO_in",243,46; delitem 21000,1; } else { mes "[RAO Dungeon]"; mes "Only Lv60-80 can enter Dungeon."; mes "And you need 1 Ticket."; } close2; break; case 5: close2; break; } OnHour06: query_sql "truncate daily_reward"; end; } Can someone checkit? its not work in case 1: i dunno it never check sql dail_reward is empty, and never insert account id in daily_reward @@, sorry bad eng >.<
  17. how to checkit? hmmm ps -ux?
  18. just message Killed sir, same as like this post https://rathena.org/board/topic/94532-map-server-killed/
  19. Hi im using CentOS 7, When i tried to run a server with ./athena-start start, why always KILLED, maybe somebody can help me? i use latest ver rAthena. Sorry bad eng @@
  20. Hi, im using 2013-08-07, when i tried to change login screen in texture, but its not change, please help me, any solution? hmm I diff the client with NEMO
  21. oke i'll try and confirm again, thanks before
  22. I use CentOS 6.5 I tried to use rathena before update https://github.com/rathena/rathena/commit/629af3be48aa4b10752558d7d31222d045cdc126 The result is rathena working properly, but after i update my database to latest version, server can't start and stuck in logging blablabla~ Yes i try to run server with ./login-server & ./char-server & ./map-server & but still same, server stuck in logging bla blabla~ Thanks before~ Sorry for my bad english.
×
×
  • Create New...