Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. 1. First download TortoiseSVN 2. Once installed. Right click on your computer and you will see SVN Checkout 3. Under URL of repository. Put these link https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ 4. Download will start in a while. After that just set char_athena.conf and map_athena.conf 5. Under username and password. Put a credential and take note of them. You will use them when you got into the database. 6. Remove // on login_ip: 127.0.0.1, char_ip: 127.0.0.1, map_ip: 127.0.0.1 on your char_athena.conf and map_athena.conf. 7. Go to your inter_athena.conf and put your database credentials there. Make sure it is correct with what you set on your database. On database part : 1. Create ragnarok database and logs database 2. Just add main.sql on your ragnarok database and logs.sql on your logs database 3. Once set. Go to login table under ragnarok table and set the username and password credentials same to what you have put in your char_athena.conf and map_athena.conf. 4. Recompile your server using Visual Studio (C++) 5. Apply changes and run your server.
  2. http://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/custom/warper.txt
  3. My mistake. Replace those with these : bonus bAtk,150; bonus2 bSubRace,RC_DemiHuman,1*getrefine(); bonus bMagicAtkDef,1*getrefine(); bonus3 bAutoSpell,"AC_DOUBLE",10,1; if (BaseJob==Job_Rogue) { bonus2 bAddRace,RC_DemiHuman,10; }
  4. . Just follow the structure of the database. All the scripts i have made should be place in the first { }
  5. Use spoiler tag to prevent 2 meters scrollbar. Try these Do the same on others. Just have a reference. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/item_bonus.txt
  6. Configuration : OnInit: set .NPC$,"[ " +strnpcinfo(1)+ " ]"; set .ID,7179; set .AMOUNT,5; end; Edited : Find : if (countitem(.ID) < .AMOUNT) { mes .NPC$; mes "You do not comply with my requirements."; mes "My requirements : "; mes "- " +getitemname(.ID)+ " " +.AMOUNT+ "x"; close; } Add below : if (gettimetick(2) < #timer) { mes .NPC$; mes "You can only change your name once in a month " +strcharinfo(0); close; } Find : delitem .ID, .AMOUNT; Add below ( 2592000 seconds = 30 days ) : set #timer,gettimetick(2) + 2592000; I've updated the following files you can check it out sample.txt http://patsbook.net/downloads/renamer.txt
  7. public class Count { public static void main(String[] args) { for (int i = 3809; i < 1000001; i++) { System.out.println(i); } } }
  8. And where's your script?
  9. The website is actually hosted on HostGator but the SQL tables are on Asura, would there still be any port problems if I was only relying on Asura for the SQL? As hostgator had no problems connecting to the old SQL host. I have already done that, that is how my rAthena server is able to work with the new SQL. That's how i fixed my problem last time. Try @ShogS post
  10. PVP Ladder http://rathena.org/board/topic/81535-pvp-ladder-modifications/
  11. Extract this files on your data/wav folder wav.rar If you want to have 1 kafra point every kill try these : ( Refer to link in the previous post ) Find these line : CountKills: set PVPKills,PVPKills+1; set @PVPKillstoday,@PVPKillstoday+1; set #PVPKillsAccount,#PVPKillsAccount+1; setarray @playerstats[0],@PVPKillstoday,@PVPDeathstoday,PVPKills,PVPDeaths,#PVPKillsAccount,#PVPDeathsAccount; Replace with : CountKills: set PVPKills,PVPKills+1; set @PVPKillstoday,@PVPKillstoday+1; set #KAFRAPOINTS, #KAFRAPOINTS + 1; set #PVPKillsAccount,#PVPKillsAccount+1; setarray @playerstats[0],@PVPKillstoday,@PVPDeathstoday,PVPKills,PVPDeaths,#PVPKillsAccount,#PVPDeathsAccount;
  12. Create a user that will match with the credentials on your servers.php.
  13. OMG this helps me too.
  14. Try something like this sample.txt
  15. Just disable this https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/config/renewal.h #define RENEWAL To : ///#define RENEWAL Then recompile
  16. query_sql "SELECT `class` FROM `ranking_race_level` ORDER BY `fame` DESC LIMIT 1",@class;
  17. Give all the codes
  18. Just run the script. npc/ folder
  19. Great update!
  20. Next time use your search skills http://www.youtube.com/results?search_query=create+private+ragnarok+server&oq=create+&gs_l=youtube.3.0.35i39l2j0l8.965.3379.0.4076.15.8.3.0.0.0.337.1309.3j3j1j1.8.0...0.0...1ac.1.VDL0NGVJD3I
  21. You did it well
  22. Just find the archangel wings there and get the corresponding view ID. For example : ACCESSORY_MAGICAL_BOOSTER = 873 The view id of magical booster is 873. Then if you want to use the view id of magical booster then your should have 873 in it's view id. 2573,Archangel_Wing,Archangel Wings,5,0,,200,,18,,1,0xFFFFFFFF,7,2,4,,0,1,873,{},{},{}
  23. For me 2010-07-30 is the best 2010 client
  24. Are you serious that this is not a filipino section? this topic wasn't in filipino section when it was 1st posted OK
  25. Are you serious that this is not a filipino section?
×
×
  • Create New...