Jump to content

Kanage

Members
  • Posts

    162
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Kanage

  1. all is ok now, i have figured it out.
  2. hi, i am looking for a world map *english* that looks like in the picture and also the detailed world map cause i cant download the one in the download section. i hope someone can help me to complete my english buttons pack and hopefully share it with the rathena community. worldmap_mob.bmp
  3. @Chemical Rush - yes, thats what i am looking for, the one with crown and diadem like leo crown and leo diadem. and sorry i have posted the wrong word. its zodiac headgears and not constellation LOL
  4. try changing your editing your xml file. change this <version>28</version> to <version>26</version> and also make your your using the right login port. <port>55555</port> ?
  5. as i have updated my server with revision 15832 i encountered this error. they change the schema where the last time logs should be in log schema, now its in ragnarok schema. hope the developer can fix the problem with the database. heres the new logs.sql #PickLog types (M)onsters Drop, (P)layers Drop/Take, Mobs Drop (L)oot Drop/Take, # Players (T)rade Give/Take, Players (V)ending Sell/Take, (S)hop Sell/Take, (N)PC Give/Take, # ©onsumable Items, (A)dministrators Create/Delete, Sto®age, (G)uild Storage, # (E)mail attachment,(B)uying Store, Pr(O)duced Items/Ingredients, Auct(I)oned Items, # (X) Other, (D) Stolen from mobs, (U) MVP Prizes[/color] [color=#006400]#Database: ragnarok #Table: picklog CREATE TABLE `picklog` ( `id` int(11) NOT NULL auto_increment, `time` datetime NOT NULL default '0000-00-00 00:00:00', `char_id` int(11) NOT NULL default '0', `type` enum('M','P','L','T','V','S','N','C','A','R','G','E','B','O','I','X','D','U') NOT NULL default 'P', `nameid` int(11) NOT NULL default '0', `amount` int(11) NOT NULL default '1', `refine` tinyint(3) unsigned NOT NULL default '0', `card0` int(11) NOT NULL default '0', `card1` int(11) NOT NULL default '0', `card2` int(11) NOT NULL default '0', `card3` int(11) NOT NULL default '0', `map` varchar(11) NOT NULL default '', PRIMARY KEY (`id`), INDEX (`type`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#ZenyLog types (M)onsters,(T)rade,(V)ending Sell/Buy,(S)hop Sell/Buy,(N)PC Change amount,(A)dministrators,(E)Mail,(B)uying Store #Database: ragnarok #Table: zenylog CREATE TABLE `zenylog` ( `id` int(11) NOT NULL auto_increment, `time` datetime NOT NULL default '0000-00-00 00:00:00', `char_id` int(11) NOT NULL default '0', `src_id` int(11) NOT NULL default '0', `type` enum('M','T','V','S','N','A','E','B','I') NOT NULL default 'S', `amount` int(11) NOT NULL default '0', `map` varchar(11) NOT NULL default '', PRIMARY KEY (`id`), INDEX (`type`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#Database: ragnarok #Table: branchlog CREATE TABLE `branchlog` ( `branch_id` mediumint(9) unsigned NOT NULL auto_increment, `branch_date` datetime NOT NULL default '0000-00-00 00:00:00', `account_id` int(11) NOT NULL default '0', `char_id` int(11) NOT NULL default '0', `char_name` varchar(25) NOT NULL default '', `map` varchar(11) NOT NULL default '', PRIMARY KEY (`branch_id`), INDEX (`account_id`), INDEX (`char_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#Database: ragnarok #Table: mvplog CREATE TABLE `mvplog` ( `mvp_id` mediumint(9) unsigned NOT NULL auto_increment, `mvp_date` datetime NOT NULL default '0000-00-00 00:00:00', `kill_char_id` int(11) NOT NULL default '0', `monster_id` smallint(6) NOT NULL default '0', `prize` int(11) NOT NULL default '0', `mvpexp` mediumint(9) NOT NULL default '0', `map` varchar(11) NOT NULL default '', PRIMARY KEY (`mvp_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#Database: ragnarok #Table: atcommandlog CREATE TABLE `atcommandlog` ( `atcommand_id` mediumint(9) unsigned NOT NULL auto_increment, `atcommand_date` datetime NOT NULL default '0000-00-00 00:00:00', `account_id` int(11) unsigned NOT NULL default '0', `char_id` int(11) unsigned NOT NULL default '0', `char_name` varchar(25) NOT NULL default '', `map` varchar(11) NOT NULL default '', `command` varchar(255) NOT NULL default '', PRIMARY KEY (`atcommand_id`), INDEX (`account_id`), INDEX (`char_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#Database: ragnarok #Table: npclog CREATE TABLE `npclog` ( `npc_id` mediumint(9) unsigned NOT NULL auto_increment, `npc_date` datetime NOT NULL default '0000-00-00 00:00:00', `account_id` int(11) unsigned NOT NULL default '0', `char_id` int(11) unsigned NOT NULL default '0', `char_name` varchar(25) NOT NULL default '', `map` varchar(11) NOT NULL default '', `mes` varchar(255) NOT NULL default '', PRIMARY KEY (`npc_id`), INDEX (`account_id`), INDEX (`char_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#ChatLog types Gl(O)bal,(W)hisper,(P)arty,(G)uild,(M)ain chat #Database: ragnarok #Table: chatlog CREATE TABLE `chatlog` ( `id` bigint(20) NOT NULL auto_increment, `time` datetime NOT NULL default '0000-00-00 00:00:00', `type` enum('O','W','P','G','M') NOT NULL default 'O', `type_id` int(11) NOT NULL default '0', `src_charid` int(11) NOT NULL default '0', `src_accountid` int(11) NOT NULL default '0', `src_map` varchar(11) NOT NULL default '', `src_map_x` smallint(4) NOT NULL default '0', `src_map_y` smallint(4) NOT NULL default '0', `dst_charname` varchar(25) NOT NULL default '', `message` varchar(150) NOT NULL default '', PRIMARY KEY (`id`), INDEX (`src_accountid`), INDEX (`src_charid`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ;[/color] [color=#006400]#Database: ragnarok #Table: loginlog CREATE TABLE `loginlog` ( `time` datetime NOT NULL default '0000-00-00 00:00:00', `ip` varchar(15) NOT NULL default '', `user` varchar(23) NOT NULL default '', `rcode` tinyint(4) NOT NULL default '0', `log` varchar(255) NOT NULL default '', INDEX (`ip`) ) ENGINE=MyISAM ; to fix this find all the #Database: ragnarok and change it to #Database: log this should fix the error
  6. need help here, gusto ko sana maging online yung website ko na fluxcp renewal na ginawa ni calciumkid na supported ang rathena. kelangan ko ng in depth guide para magawa kong online ang website ko, kung ano mga dapat gawin.nainstall ko na yung CMS addons at naiportforward ko na sa router balancer ko yung mga ports na kelangan pero di parin maaccess ang website ko. kung may makapagbigay ng guid, tutorial o tulong ay magiging laking tulong po sa akin. salamat
  7. maybe the "effects" you are referring to is the one in the grf file and not the one in the BGM folder. check the grf folder and you'll find effects folder. there are two effect folder you can find here the directory 1. data/wav/effect/ 2. data/texture/effect/
  8. i have tried extracting packets from a 2011-11-22aRagexeRE with a ro packet extractor but as i extracted it showed different format of packets. its like this 4000291<tab>blah blah 4000292<tab>blah blah and so on.. i dont get how you can capture the real packets with that. some says they use WPE or cheat engine don't i have any idea how to use WPE.
  9. well it fixes the packet version but its confusing though LOL so its not really packet version 28 but 26 right? just asking.
  10. di ba visual c++ 2003 to 2010 lang support ng 3ceam na pangcompile? bat yun 6.0 gamit mo?
  11. i am encountering that error also while running my server and its rejecting my account, Chief's setting and i have the same setting. i dont get why theres "unknown packet session #3" at the console where in the last time i checked my rathena server its running ok.
  12. i have just installed calciumkid's renewal fluxcp but as i install it i encountered this errors, can someone help me chekc and fix the errors. thanks in advance
  13. @Jaypee, yes i am using myphpadmin and also mysql workbench CE. i have drop every 3ceam itemdb tables and use rathenas itemdb i tried using mysql workbench but an error occurs when initiating and reading at the part of bellium_katzbalger and my workbench freezes. ill try mysql query browser later. itx now fixed. i used mysql query browser. workbench is the culprit, i think there something with the new syntax with that version. all is migrated from 3ceam to rathena database and no error occur while importing you may now mark this as fixed, thanks for the suggestion and help.
  14. gawa ko gamit ang grf builder at idagdag mo siya sa data.ini mo pero mas ok sana kung malagay mo nalang siya sa grf file mo mismo thru patcher
  15. AndrianYogi says And I could login when that eAthena was in my computer so nothing to do with clientver maybe the problem is the IP, are you using dynamic or static IP?
  16. does the client says "rejected from server", if yes then maybe you're using wrong client date. client date and and the DEFINE PACKETVER didn't match BTW: i can see your IP there
  17. i have sucesfully migrated my 3ceam database to rathena sir, the problem is that as i import the itemdb is has shown that error but i even drop the 3ceam itemdb tables to import rathena's own itemdb error still there while importing. hope our developer here can see and answer my problem. thanks in advance
  18. i need help with my database migration and as i updating my item_db this error occurred. hope someone can help me fix it ASAP all other tables has been updated from 3ceam to rathena except the error that appeared i cant check whats the problem with line 49 it says theres an invalid syntax i think ill just drop the tables and import my itemdb again. as i import again the itemdb, the error still persist. can someone figure out the problem here. thanks in advance for the help
  19. anyone knows how to do integrating the mysql workbench and mysql xampp. i hav already integrated mysql worhbench with wamp. its fixed now kindly marked this as solved
  20. Kanage

    help pls

    //ipban.sql.db_hostname: 127.0.0.1 //ipban.sql.db_port: 3306 //ipban.sql.db_username: ragnarok //ipban.sql.db_password: ragnarok //ipban.sql.db_database: ragnarok //ipban.sql.codepage: //ipban.sql.ipban_table: ipbanlist // Dynamic password failure ipban system uncomment this section and put all the information about ipban database
  21. http://www.eathena.ws/board/index.php?showtopic=230035 check the link post the guide, it may help you
  22. when portforwarding you input your servers ip then that port and then at the protocol you have to enable not just tcp but udp also for the data can be send vice versa. and also check whether your router is set to bridging or routing mode, routing/ bridge mode are two different settings of your router that depend on what kind of connection your are using, if its dynamic or static connection. hope it helps btw subnet: 255.0.0.0:180.192.xxx.xxx:180.192.xxx.xxx you are using the wrong subnet too. kindly check that. there are many guides in eathena even in google that can give you proper setting your server online step by step. you have made you 1 step in making it online just a few tweak and you can make it.
  23. i think you have use the wrong grf file the server to read first , make sure that your server read your own grf first then next the data.grf. don't make the server read the rdata.grf first.
  24. it has something to do with the client i think, you have to use sakray for it to work *if im not mistaken*
×
×
  • Create New...