Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. ALTER TABLE `char` AUTO_INCREMENT = 150000; probably the Control Panel that you using changed the original value of 150000. ops..it's char.. somewhere in source defined the default starting value..forget which file...kinda lazy to search..xD
  2. disable the renewal drop rate setting.
  3. maybe you accidently changee the auto_increment value ??
  4. Admin CP > Tool & Setting > Login Management > External Database edit it with your server settings.
  5. something like this ? http://upaste.me/501485
  6. above the warp add this announce strcharinfo(0)+" has joined PVP.",bc_all;
  7. change if (Zeny > 4999) { to if( countitem( 607 ) >= 10 ){ then change set Zeny, Zeny - 5000; to delitem 607,10;
  8. probably dispute also cant help him if the seller did do like this..
  9. before the warp command, add this if( getmapusers( "bossnia_0"+.@i ) >= 20 ){ mes "Room Full."; close; }
  10. Emistry

    Error

    probably you're not using rAthena ?? what emulator you're using this script command exist since very long ago in *Athena, pcblockmove unless you removed it.
  11. the link work just fine ==''
  12. this kind of error is normally happen because of your custom item pc_bonus ... not from script. before telling a script got problem, make sure you did try take a look into the script to find something related to your bugs. my ROTD doesnt even give any kind of pc_bonus to player.
  13. http://rathena.org/board/topic/90738-itemtype-update-read-this-very-important/
  14. if( !.@give_reward ){ gain_reward = 1; getitem 512,1; getitem 512,2; getitem 512,3; }
  15. Emistry

    Help Me!

    disable renewal cast setting. src/config/renewal.h#L33
  16. mes "Player name"; input .@name$; mes "IP : "+getcharip( .@name$ ); close; make sure you enter correct IP and make sure they are online..xD or better version mes "Player name"; input .@name$; query_sql( "SELECT `account_id` FROM `char` WHERE `name` = '"+escape_sql( .@name$ )+"' LIMIT 1",.@aid ); if( .@aid ){ query_sql( "SELECT `last_ip` FROM `login` WHERE `account_id` = "+.@aid+" LIMIT 1",.@last_ip$ ); mes "IP : "+.@last_ip$; } close; didnt test.
  17. this line define how many treasure box will be spawned. https://github.com/rathena/rathena/blob/master/npc/guild/agit_main.txt#L1142 depend on castle economy. if you want fix value, then just edit to something like this set .@Treasure,5; 5 treasure box.
  18. if you dont know how to use the GIT software then directly download the RAR file from the GIT website. https://github.com/rathena/rathena/archive/master.zip a similar guide can be obtain here http://hercules.ws/board/topic/152-obtaining-hercules/ just edit the link to download rAthena.
  19. try this http://upaste.me/r/619830
  20. i think it should be your client skill LUB file. same trick used to adjust teleport skill level before this.
  21. http://rathena.org/wiki/Custom_Items
  22. try this prontera,155,181,5 script Sample#rebirth 757,{ if( BaseLevel < .rebirth_lvl[0] || JobLevel < .rebirth_lvl[1] ){ mes "You need Level "+.rebirth_lvl[0]+" / "+.rebirth_lvl[1]+"."; } else if( rebirth_count >= .rebirth_title_size ){ mes "You reach max rebirth already."; } else{ for( set .@i,0; .@i < .item_list_size; set .@i,.@i + 1 ){ mes " > "+getitemname( .item_list[.@i] )+" x "+.item_list[.@i+1]; if( countitem( .item_list[.@i] ) < .item_list[.@i+1] ) .@fail++; } if( !.@fail ) if( select( "Rebirth to "+.rebirth_title$[rebirth_count],"Cancel" ) == 1 ){ resetlvl 1; set rebirth_count,rebirth_count + 1; for( set .@i,0; .@i < .item_list_size; set .@i,.@i + 1 ) delitem .item_list[.@i],.item_list[.@i+1]; mes "DONE"; } } close; OnInit: setarray .rebirth_lvl,255,120; setarray .item_list, 512,10, 607,20, 608,30; set .item_list_size,getarraysize( .item_list ) - 1; setarray .rebirth_title$, "Bronze I", "Bronze II", "Bronze III", "Bronze IV", "Bronze V"; set .rebirth_title_size,getarraysize( .rebirth_title$ ); end; } didnt test. log isnt included.
  23. http://ratemyserver.net/index.php?page=creation_db
×
×
  • Create New...