Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. failure to connect to server ?? i think you should check your map-server for any possible error messages.
  2. change to other format or install the required stuff into your host server.
  3. instead of making a new one, why not you try the current existing script ?? npc/custom/quests/quest_shop.txt or https://rathena.org/board/index.php?/files/file/2504-%7B?%7D/
  4. ==‘’ that file are used for you to make sure certain item can be use in certain maps... since you want your custom item can be use only in battleground map, then just add in your custom item id there.
  5. you can just use this instead of asking for source mod db/re/item_noequip.txt //---------------------------------------------------------------------------- // Battlegrounds //---------------------------------------------------------------------------- 12218,8 //Assumptio_5_Scroll 14590,8 //Pty_Assumptio_Scroll
  6. if( !( eaclass() & EAJL_UPPER ) ){ mes "only trancendent class can use"; close; } you can refer here https://github.com/rathena/rathena/blob/master/doc/ea_job_system.txt
  7. you can just put the code under the Case 1: if( BaseLevel < 99 ){ mes "Cant use."; close; }
  8. elaborate more on your problem what you diff what your problem how can we duplicate your problem, etc.
  9. OnClock0000: OnClock0200: OnClock0400: if( !.status ){
  10. the very first original version already did what you wanted. anyway try http://upaste.me/r/2923bc
  11. if you're looking for a solution to edit your script, at least show your script.
  12. announce strcharinfo(0)+" has killed the Poring! Left "+mobcount( strcharinfo(3),.npc_name$+"::OnPoringDead" )+" Poring in "+strcharinfo(3),bc_all;
  13. // header if( BaseLevel < 99 ){ mes "Only level 99 char can use."; close; }
  14. try this prontera,155,181,5 script Sample#thief 757 if( JobLevel >= 40 && Class == Job_Thief ){ if( select( "Change job","Cancel" ) == 1 ){ jobchange Job_Assassin; mes "You're now "+jobname( Job_Assassin ); } } else{ mes "You must be a "+jobname( Job_Thief )+" with minium 40 job level."; } close; }
  15. rental item by default shouldnt have any slots within it.
  16. your revision is updated, but your script is outdated. getcastledata doesnt support event label in updated revision. you can switch to other woe script or use the latest one in repo.
  17. it show the number of special poring that still alive in that town.
  18. the script delete item based on what number they have entered. this is what you requested.
  19. try this http://upaste.me/r/9afdbf
  20. you can try .@rate = ( 2 * rand(1,2) );
  21. for( .@i = 0; .@i < .map_size; .@i++ ){ killmonster .map$[.@i],.npc_name$+"::OnPoringDead"; monster .map$[.@i],0,0,"Poring",1002,.poring_amount,.npc_name$+"::OnPoringDead"; monster .map$[.@i],0,0,"Poring",1002,100,""; // <--- NORMAL PORING }
  22. try http://upaste.me/r/08da32 ( CTRL + F5 refresh ) what you mention from above post is different from your first post, it's you who are confused with your own request. Next time explain it more clearly.
  23. try this http://upaste.me/r/166aa7 Sorry all the text has mess up .. my pc doesnt support thai language. Next time please submit a translated version if possible, this is english forum after all.
  24. try this http://upaste.me/r/1e8935
  25. For your information, I believe there might be some code inside the module folder since module folder mostly deal with the database update/retrieve data. It may look fixed but your addon may not work if you have some file missing.
×
×
  • Create New...