Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. setd( ".activate_aid_"+ strnpcinfo(2) ),getcharid(3); use setd
  2. Emistry

    assci

    use GRF editor to extract the files.
  3. your probably loaded/duplicate the same script multiple time ?
  4. prontera,150,193,4 script Reset Girl 124,{ if(gettimetick(2) < ResetDelay1) { mes "You can only do a reset once a day!"; close; } .@ResetStat = 150000; // Zeny for stat reset .@ResetSkill = 5000; // Zeny for skill reset .@ResetBoth = 9000; // Zeny for resetting both together mes "[Reset Girl]"; mes "I am the Reset Girl."; mes "Reset Stats: " + callfunc("F_InsertComma", .@ResetStat) + "z"; mes "Reset Skills: " + callfunc("F_InsertComma", .@ResetSkill) + "z"; mes "Reset Both: " + callfunc("F_InsertComma", .@ResetBoth) + "z"; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Stats^000000:Cancel")) { case 1: mes "[Reset Girl]"; if (Zeny < .@ResetStat) { mes "Sorry, you don't have enough Zeny."; close; } ResetDelay1 = gettimetick(2)+86400; Zeny -= .@ResetStat; resetstatus; mes "There you go!"; close; case 2: close; } }
  5. https://github.com/rathena/rathena
  6. INSERT INTO `global_reg_value` (`char_id`,`str`,`account_id`,`value`,`type`) SELECT '0','#SECURITYCODE', `account_id`,CEILING( RAND() * 10000 ),'2' FROM `login`; WHERE `account_id` NOT IN ( SELECT `account_id` FROM `global_reg_value` ) or - script Sample#main -1,{ OnInit: query_sql( "SELECT `login`.`account_id` FROM `login` WHERE `account_id` > 1 AND `account_id` NOT IN ( SELECT `global_reg_value`.`account_id` FROM `global_reg_value` WHERE `global_reg_value`.`str` = '#SECURITYCODE' AND `value` > 0 )",.@aid ); .@aid_size = getarraysize( .@aid ); while ( .@aid_size >= 1 ) { .@aid_size--; query_sql( "INSERT INTO `global_reg_value` (`str`,`account_id`,`value`,`type`) VALUES ( "+rand( 1000,9999 )+","+.@aid[.@aid_size]+",2 )" ); if ( .@aid_size && .@aid_size % 100 == 0 ) sleep 1; } end; }
  7. adjust the script here npc/custom/etc/floating_rates.txt
  8. input .@charname$; .@target = getcharid(3,.@charname$); .@origin = getcharid(3); if ( attachrid( .@target ) ) { .@warningpoints = #warningpoints; attachrid( .@origin ); mes "Warning = "+.@warningpoints; if ( select( "Set new value","Cancel" ) == 1 ) { input .@value; close2; if ( attachrid( .@target ) ) { #warningpoints = .@value; dispbottom "Warning Point updated to "+#warningpoints; } else { dispbottom "Char not found."; } end; } } else { mes "Char not found."; } close; since you're using TXT there's no way for you set update the data using SQL for offline char.
  9. https://rathena.org/board/index.php?/files/file/2496-%7B?%7D/
  10. issue 1 - get the translated client files. issue 2 - tokeiburu does released fixed files for both OLD and NEW prontera.
  11. I remember Kamishi released the fixes for these headgear sprite in forum long ago.
  12. https://rathena.org/board/topic/86764-mob-poring-collection/
  13. https://rathena.org/board/forum/99-client-releases/ or else travel back to eAthena era .. O_O visit eathena.ws forum https://eathena.ws/forum/ https://eathena.ws/board/ <--- ancient
  14. https://rathena.org/board/tags/forums/hosting/
  15. @Azeroth sorry cant remember, I got it about 3~4 years ago if i recall correctly. since then I just keep update it from time to time. So far, I got kRO, iRO, jRO, and twRO with me.
  16. if (.@luckyday < 10){ if (.@luckyday < 20){ if (.@luckyday % 10){ if (.@luckyday % 5){
  17. the entry can be found in jRO, but not the sprite, probably they removed it after the event. (if the monster belong to event) jRO often remove the event content once it's over. maybe you can try search from each of the old patch of jRO.
  18. the success rate is roughly 5% only. .@luckyday = rand(1,100); if (.@luckyday % 20){ emotion e_dots; delitem .@choice,1; mes "Shoot, I'm sorry. It failed."; mes "But I'm sure it will work next time. I have a feeling."; close; }
  19. replace the name of any existing "sky" map. Example : gonryun.
  20. Version 1.0

    10220 downloads

    These files are not created by me. I just found someone share a complete package of it on facebook. Thank him/her for collecting all these Skin across the world wide web, I believe some skin files was updated or fixed by him/her. So, I'll just provide a text file that contain the link to download these files from my dummy OneDrive Folder. Album Preview : http://imgur.com/a/b1MHG Installation Guide : Pick any RO Skin that you like and Download it to your PC/Laptop. Extract the files using 7-Zip / WinRar / WinZip / etc. Copy and paste the extracted files into the %System%/kRO/Skin/ folder. Again, I don't own any of these files. I just sharing the files. None of these are commercial items. Please insert / remain the credits in case you know who're them. Thank you.
    Free
  21. View File 72 RO Skin Packs These files are not created by me. I just found someone share a complete package of it on facebook. Thank him/her for collecting all these Skin across the world wide web, I believe some skin files was updated or fixed by him/her. So, I'll just provide a text file that contain the link to download these files from my dummy OneDrive Folder. Album Preview : http://imgur.com/a/b1MHG Installation Guide : Pick any RO Skin that you like and Download it to your PC/Laptop. Extract the files using 7-Zip / WinRar / WinZip / etc. Copy and paste the extracted files into the %System%/kRO/Skin/ folder. Again, I don't own any of these files. I just sharing the files. None of these are commercial items. Please insert / remain the credits in case you know who're them. Thank you. Submitter Emistry Submitted 10/22/2015 Category Skins Video Content Author Unknown  
  22. make sure you use the right constant. refer to db/const.txt https://github.com/rathena/rathena/blob/master/db/const.txt#L1219 --> Archer's Attention Concentrate https://github.com/rathena/rathena/blob/master/db/const.txt#L1306 --> Lord Knight's Concentration
×
×
  • Create New...