Jump to content

Mootie

Members
  • Posts

    815
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mootie

  1. Hello, Go to your mysql and which table name you input your main.sql and edit the s1 and p1 and put it here // Server Communication username and password. userid: ragnarok passwd: ragnarok
  2. Mootie

    reque 1 NPC

    http://pastebin.com/raw.php?i=GJ4ukgGH source http://rathena.org/board/topic/64394-%E2%9C%B0-euphys-scripts-%E2%9C%B0/
  3. Mootie

    Updating SVN

    If you are using linux cd /root/Desktop/trunk ls svn update to upgrade your .sql in database Import MySQL Tables Change directory to the sql-files folder.cd trunk/sql-files/ Execute these commands:When prompted, enter your MySQL root password.mysql --user=root -p rathena4444_rag < main.sql mysql --user=root -p rathena4444_rag < item_db.sql mysql --user=root -p rathena4444_rag < item_db2.sql mysql --user=root -p rathena4444_rag < mob_db.sql mysql --user=root -p rathena4444_rag < mob_db2.sql mysql -u root -p rathena4444_log < logs.sql NOTE: if you want to use different SQL DBs for login/char/map servers this is the list of databases each server use: login-server: global_reg_value, ipbanlist, login, loginlogmap-server: mapreg, item_db, item_db2, mob_db, mob_db2char-server: everything else + global_reg_value once again Note that global_reg_value tables are needed by both login-server and char-server (though it may be different tables) source http://rathena.org/wiki/Installation_%28CentOS%29#SVN_Checkout or you can use your phpmyadmin follow this guide http://rathena.org/board/topic/77315-update-logs-on-linux-phpmyadmin/ Note: only update your database with the following changes
  4. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/packet_db.txt
  5. found some topics that related on your problem http://rathena.org/board/topic/61622-disconnecting-session3-unknown-packet-version/ http://rathena.org/board/topic/72597-disconnecting-session-3-with-unknown-packet-version/ http://rathena.org/board/topic/72717-cl-parse-disconnecting-session-3-with-unknown-packet-version/ http://rathena.org/board/topic/68316-parse-char-received-unknown-packet-0x67-from-ip-127001/ hope it helps you.
  6. http://www.eathena.ws/board/index.php?showtopic=259465 try to search sometimes.
  7. Check on your asurahosting if you ordered cpanel or if you have cpanel already.
  8. if you have cpanel you can. just upload the files in www or public html then config it to to connect it to your database.
  9. @Tantrums You should. cause feefty added cash point reward if you dont want to use the cash point reward then you shouldnt use or update it.
  10. Mootie

    Problem

    Wrong section btw. if the equip crashes you means you have problem on the sprite items. many guides and tutorial else where so try to search on it.
  11. Means your kro is not updated to use renewal mechanics. you have to update your rdata.grf or download this http://www.nickyzai.net/?p=kro
  12. Use no-ip.org instead your-ro.sytes.net
  13. Mootie

    Help

    http://rathena.org/wiki/Main_Page database editor http://rathena.org/board/files/ http://sushiduy.plesk3.freepgs.com/ROScripts/WoeInfo/woeinfo_122.php try to search all of your question are already answered somewhere.
  14. You can use https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/mob_item_ratio.txt or if you want to be fixed // The rate at which cards are dropped item_rate_card: 100 item_rate_card_boss: 100 item_drop_card_min: 15000 item_drop_card_max: 15000 15% for all cards and similar topic as yours http://rathena.org/board/topic/56749-setting-dropexp-rates/ try to search nxt time.
  15. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_cast_db.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_castnodex_db.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_nocast_db.txt And remember renewal casting is // How much (dex*2+int) does variable cast turns zero? vcast_stat_scale: 530
  16. http://www.youtube.com/watch?v=3LTOOEjRtUo
  17. callfunc("dispell"); put that in woe_controller.txt and make another script that calls the function of dispell function script dispell { while ( .@STATUS < 297 ) { if ( .@STATUS != SC_WEIGHT50 && .@STATUS != SC_WEIGHT90 && .@STATUS != SC_NOCHAT && .@STATUS != SC_XMAS && .@STATUS != SC_SUMMER && .@STATUS != SC_JAILED ) sc_end .@STATUS; set .@STATUS, .@STATUS+1; } return; } check this part //prontera,156,196,6 duplicate(WoE Info) WoE Info#2winfo 837 //--------------------------------------------------------------------------------------------------------------------- function script WoEToggler { //<state> = 0|1 if(getarg(0)) { AgitStart; } else { AgitEnd; } function dispell { for( .@i = 0; .@i < 308; .@i++ ) if( (.@i != 53) && (.@i != 54) && (.@i != 249) && (.@i != 103) ) //Do not dispell SC_WEIGHT50, SC_WEIGHT90, SC_JAILED, SC_NOCHAT sc_end .@i; return; }
  18. function dispell { for( .@i = 0; .@i < 308; .@i++ ) if( (.@i != 53) && (.@i != 54) && (.@i != 249) && (.@i != 103) ) //Do not dispell SC_WEIGHT50, SC_WEIGHT90, SC_JAILED, SC_NOCHAT sc_end .@i; return; } Add it in your woe script. Correct me if im wrong
  19. INSERT INTO `item_db2` ( `id` , `name_english` , `name_japanese` , `type` , `price_buy` , `price_sell` , `weight` , `atk:matk` , `defence` , `range` , `slots` , `equip_jobs` , `equip_upper` , `equip_genders` , `equip_locations` , `weapon_level` , `equip_level` , `refineable` , `view` , `script` , `equip_script` , `unequip_script` ) VALUES ('22000', 'sample', 'sapmple', '5', '20', NULL , '10', NULL , NULL , NULL , '1', '4294967295', '7', '2', '512', NULL , NULL , '1', '937', '', '', ''),
  20. You have to disable them 1 by 1 then look if the error still occur or use them then check the console
  21. Check your previously custom item added.
  22. Mootie

    hmmm

    http://www.youtube.com/watch?v=3LTOOEjRtUo check the other video part
×
×
  • Create New...