Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. http://rathena.org/wiki/Category:Installation
  2. tons of example are shown inside the trunk/db/re/item_db.txt for 3rd job stuff... just avoid using job changer that allow 3rd job class changing...
  3. trunk/conf/login_athena.conf // Store passwords as MD5 hashes instead of plaintext ? // NOTE: Will not work with clients that use <passwordencrypt> use_MD5_passwords: no
  4. edit the amount part EDIT : // Example : Red Potion with 100% Refine Rate // 501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc( "RefineFunc",501,1,63,0,10,1,0,100 ); },{},{} // Change Item Type to 11 and Amount Required to 1 ( Advised ) please take note on what i write inside the script....
  5. its just a warning message to remind you not to use the default id / password ... userid: s1 passwd: p1 it's more secured if you changed this...
  6. something like this ? http://pastebin.com/raw.php?i=BQVZiLvd you can use those NPC variable..or temporary global variable for this kind of script...
  7. run the updates sql query.. trunk/sql-files/upgrades/upgrade_svn17176.sql
  8. L_PKGetFame: set PvPkills,0; // <---------- MISSING set Fame, Fame+1;
  9. check ur item_db.txt for the items that gave more than 15 pc bonus ...
  10. edit this file trunk/db/re/job_db1.txt change the HP factor..or other HP related..
  11. getinventorylist; if( @inventorylist_count >= 100 ){ mes "Your inventory reach 100 items already."; } refer getinventorylist
  12. trunk/doc/item_bonus.txt bonus2 bSkillAtk,n,x; Increase damage of skill n by x% (supports skill names)
  13. trunk/db/re/item_combo_db.txt // Item Combos Database // // Structure of Database: // ID:ID:ID:ID,{ Script }
  14. refer this ? trunk/doc/item_bonus.txt
  15. you mean like this ? OnPCLoginEvent: .@char$ = strtoupper( charat( strcharinfo(0),0 ) ); if( compare( ":A:E:I:O:U:",":"+.@char$+":" ) ) .@map$ = "prontera"; .@x = 155; .@y = 181; }else{ .@map$ = "prontera"; .@x = 155; .@y = 171; } save .@map$,.@x,.@y; warp .@map$,.@x,.@y; end;
  16. you didnt set the warp coordinate.. //coords to warp player to region (0 is random) setarray .region_x[0],0, 0, 0, 0, 0, 0, 148; setarray .region_y[0],0, 0, 0, 0, 0, 0, 163;
  17. refer isequipped if (isequipped(4001)) mes "A poring card is useful, don't you think?"; refer countitem if( countitem( 4001 ) ){ // Check for Poring Card getitem 607,1; // get 1 Yggdrasilberry delitem 4001,1; // delete 1 Poring Card } refer Variables if( Weight > ( MaxWeight / 2 ) ){ mes "You are overweight.."; // more than 50% } refer Variables#Account_Variables if( #gained_item ){ // check variable mes "You already get the items."; }else{ #gained_item = 1; // assign variable getitem 607,1; }
  18. http://eathena-project.googlecode.com/svn/trunk/npc/custom/warper.txt
  19. mes "STR : "+readparam( bStr ); mes "AGI : "+readparam( bAgi ); mes "VIT : "+readparam( bVit ); mes "DEX : "+readparam( bDex ); mes "INT : "+readparam( bInt ); mes "LUK : "+readparam( bLuk ); refer readparam if you want to get the stats of other characters...then use the method from previous post..through SQL...
  20. everything you can get it here http://subversion.assembla.com/svn/ClientSide/
  21. 'PayPalIpnUrl' => 'www.paypal.com', i believe should be this....the sandbox are only for testing purpose..
  22. Emistry

    SQLI

    reconfigure your SQL setting ? like changeusername and password...restrict all unescessary access to your SQL database. recheck all your files that can connect to SQL.
×
×
  • Create New...