Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. yes...all new cart only work for player above level 101....unless you change the source... trunk/src/map/clif.c #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 131) || (type == 8 && sd->status.base_level > 121) || (type == 7 && sd->status.base_level > 111) || (type == 6 && sd->status.base_level > 101) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else
  2. Emistry

    Kro Updater

    try use this ? http://rathena.org/board/topic/62758-ro-patcher-lite-v241574-last-updated-20120415/
  3. trunk/conf/battle/client.conf // valid range of dye's and styles on the client min_hair_style: 0 max_hair_style: 27 min_hair_color: 0 max_hair_color: 8 min_cloth_color: 0 max_cloth_color: 4
  4. mapannounce "quiz_01","In 30 seconds the monster will be started!",0; sleep 25000; if( getmapusers("quiz_01") < 2 ){ announce "Event Cancelled",0; mapwarp "quiz_01","prontera",155,181; } end;
  5. then add 1 more at OnPCLoginEvent there.... same thing....
  6. trunk/conf/char_athena.conf // Server name, use alternative character such as ASCII 160 for spaces. // NOTE: Do not use spaces or any of these characters which are not allowed in // Windows filenames \/:*?"<>| // ... or else guild emblems won't work client-side! server_name: rAthena
  7. what emulator you are using ? by default.. rathena support all new carts.. as long as you enabled the Renewal features.. and if error..then update ur KRO.....
  8. find this getmapxy(@Map$,@X,@Y,0); add below if( strcharinfo(3) == "mapname" || strcharinfo(3) == "mapname" ) end;
  9. show the error.....we are not here to guess what error you are facing... if you didnt have PCRE installed with you...then go install refer to Wiki or search in forum....answered several times. http://rathena.org/wiki/PCRE
  10. all these question has been answered repeating.. a simple search would surely return alot of result to you ~ get your latest data folder file / lub here.. http://subversion.assembla.com/svn/ClientSide/ the inventory tab... use a shorter name for each tab...
  11. use updated msgstringtable.txt http://rathena.org/wiki/Favorite_tab#Msgstringtable certain part might not be translated yet.
  12. that setting can be overwrite by users after they login into ingame....
  13. getmapxy(@Map$,@X,@Y,0); if( strcharinfo(3) == "mapname" || strcharinfo(3) == "mapname" ) end; <----------------
  14. alway use the latest script i post ..... i think you are using the outdated one..... https://rathena.org/board/index.php?/files/file/2504-%7B?%7D/
  15. if( !#Claimed ){ if( Sex ){ dispbottom "BOY"; getitem 607,1; }else{ dispbottom "Girl"; getitem 608,1; } set #Claimed,1; } find any freebies npc at forum and edit to your like
  16. trunk/conf/login_athena.conf // Can you use _M/_F to make new accounts on the server? new_account: yes
  17. OnInit: delwaitingroom; waitingroom "PVP Ladder",0; end; beside....your real solution for your script is this... if ($@LadderChatRoom == 1) { delwaitingroom; waitingroom "PvP Top "+$@LadderLength+"",0; // Look on the configuration! }
  18. delwaitingroom; waitingroom "PVP Ladder",0;
  19. isnt the WOE Controller made by Euphy got the Reward System itself ? setarray .Reward[0],14001,1; // Reward for all members of conquering guilds, per castle: <ID>,<Count>{,...} (0 to disable)
  20. set #EVENTPOINTS,#EVENTPOINTS + #KAFRAPOINTS; set #KAFRAPOINTS,0;
×
×
  • Create New...