Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. 663
  2. did you install the map correctly ? i mean your map_cache and etc... did you able to warp to your custom town using @warp ? or @go ? or whatever ? tried with this ?? warp "name",x,y;
  3. conf/battle/client.conf
  4. LOL ??? if you are going to use separate NPC....isnt that Chris already give you the solution ? if you are looking for Multiple Room in 1 NPC...i already provide the script as well... what else you want ? ==''
  5. isnt that show in your script already ? //------------------Warp Portal------------------------------------------------------ que_qsch05,253,320,0 warp guesswarp 2,2,poring_c01,103,95 //-----------------------------------------------------------------------------------
  6. try this ? find this mapannounce "quiz_01","Mr. Dice: The winning number is "+$@number+".",0; add below hideoffnpc "Dice#evnt1";
  7. well, i try to contact with you last time...but due to my connection problem..i unable to connect to internet.. and i was unable to send you the fixed parts.... the problem caused no monster is because of this line monster "guild_vs5",0,0,"Gold",100,strnpcinfo(0)+"::OnKilled"; it suppose to have a monster ID which i forget to put... monster "guild_vs5",0,0,"Gold",1002,100,strnpcinfo(0)+"::OnKilled"; if you want change to Dokebi...then change 1002 into Dokebi ID.
  8. 661
  9. 656
  10. 654
  11. 650
  12. By default : rAthena src/map/map.h #define MAX_LEVEL 150 eAthena src/map/map.h #define MAX_LEVEL 99 you have to edit the value and then recompile in order to make your server to have MaxLevel of 400...
  13. 648
  14. 646 xD you're right Gepard..i missed that ...>.<
  15. how come the number dropped to 340 it was already i will forward with 640... XP
  16. 635
  17. when your script / script going to read more than 1 line.. you have to use curley to wrap your script.. if( condition ){ < script here.......> }else{ < balblabla script...> }
  18. to calculate your rate... ( Num2 - Num1 ) / BaseRate to broadcast.. announce "You get item NAME",0;
  19. OnInit: waitingroom "PVP Room",0; end;
  20. that config only apply on each time you use the summon command.. it limit you max of summon 25 monster / slave each time you use summon command
  21. i dont think it is possible for you... perhap some way like "Duplicate" the skill into a new skills and then make it non-delay skill xD
  22. 633
  23. each Job Class got 1 Room ?? try this prontera,155,181,5 script Sample 733,{ set .name$,"[PvP Room]"; set .@menu$, "All Jobs:"; for( set .@i, 1; .@i < getarraysize(.pvproomsjob); set .@i, .@i+1) { set .@menu$, .@menu$ + "^FF0000[" + .@i + "] ^0000FF"+jobname(.pvproomsjob[.@i])+"^000000:"; } set .@choice, select(.@menu$) -1; if(!.@choice) { warp .mapname$[.@choice],0,0; // Edit map for All Jobs end; } if(Class != .pvproomsjob[.@choice]) { mes "You are not of Class "+jobname(.pvproomsjob[.@choice]); close; } mapannounce .mapname$[.@choice],strcharinfo(0) + " Entered the PvP Room.",0; warp .mapname$[.@choice],0,0; end; OnInit: setarray .pvproomsjob[1],4009,4016,4010,4017,4011,4018,4012,4019,4013,4020; // Put job id's here setarray .mapname$[0],"guild_vs5","pvp_y_7-2","pvp_y_6-2","pvp_y_5-2","pvp_y_4-2","pvp_y_3-2","pvp_y_2-2","pvp_y_1-2","pvp_y_8-2","pvp_y_6-5","pvp_y_7-5"; // Put map name for those jobs. end; } the 1st Map is "All Job Class" the rest will follow the Job Id Lists
  24. http://pastebin.com/raw.php?i=nQMkAn39
  25. 629
×
×
  • Create New...