Jump to content

Drakkus

Members
  • Posts

    386
  • Joined

Everything posted by Drakkus

  1. Wondeful, i've been looking for this kind of mod. THANK YOU!!!
  2. Hi, i'm currently UPDATING my kRO Client, however i have encounter with failed patch.(including the kRO and RE) And i saw it in my kRO this: Anyone knows? i didn't touch anything about this RSU Patcher. i just update my kRO Client. Because i'm always updating it every weekened. I'd be happy if someone would give me some tip on it. Greatly appreciated! Thank you.
  3. Does the new update supported with Windows 8? I have mine, but it still it need to run as "Administrator" version 2.6.6.210
  4. Press HOLD ALT + LEFT CLICK just play with them you can resize it whatever you want
  5. Hi, been confuse, why i can't add cash shop items? db/item_cash_db2 5,607,50 5,608,50 Did i miss something or what? Currently using r17327. the default mmo.h is 20120410.
  6. Hi Capuche thanks for the respond i'll try this one also. This one i wanted to add the feature :3 //===== rAthena Script ======================================= //= Core Feature: Show which GMs are online/offline //= Special Features: //= - cache the result to prevent spam to the DB //= - show when a GM was online the last time //===== By: ================================================== //= ~De@dly Silence~ <[email protected]> //===== Current Version: ===================================== //= 1.0 //===== Additional Comments: ================================= //= 1.0 Initial Version //============================================================ frontier.gat,147,224,5 script Board 857,{ // cache the results to prevent spam .caching = 1; // caching time in seconds .cachingTime = 1; // minimum level to be recognized as a GM .minLevel = 1; // if activated, show when the GM was online the last time (account based) .showLastOnline = 1; // format the date string (%Y for year, %m for month, %d for day) .dateString$ = "%d.%m.%Y"; // format the time string (%H for hour (24 hour format), %h for hour (12 hour format), %i for minute) .timeString$ = "%H:%i"; // check if caching is enabled AND caching time is over OR caching is disabled if ((.caching && (.onlineCachingTime + .cachingTime <= gettimetick(2))) || !.caching) { query_sql( "SELECT DATE_FORMAT(`l`.`lastlogin`, '" + .dateString$ + "') as date, DATE_FORMAT(`l`.`lastlogin`, '" + .timeString$ + "') as time, `c`.`name`, `c`.`online` FROM `login` l " + "JOIN (`char` c) " + "ON (`l`.`account_id` = `c`.`account_id`) " + "WHERE `l`.`group_id` >= " + .minLevel + " " + "ORDER BY `c`.`online` DESC, `c`.`name` ASC" , .date$, .time$, .name$, .online$ ); // Workaround: select "online" as string because 0 will result in an empty field value .onlineCachingTime = gettimetick(2); } mes "(^0055FF Staff Lists ^000000)", " "; mes " "; for (.@i = 0; .@i < getarraysize(.online$); .@i += 1) { if ("1" == .online$[.@i]) { mes .name$[.@i] + ": ^00AA00ONLINE^000000"; } else { mes .name$[.@i] + ": ^FF0000OFFLINE^000000"; if (.showLastOnline) { mes "» Last online at " + .date$ + " " + .time$; } } mes "———————————————————"; } close; }
  7. Thanks for hints and respond, i'll check this out later.
  8. Install it properly, mine is working fine. READ guides.
  9. Hello, i don't know if this was answer in other thread but i was thinking if, is it possible? that NPC will change every 5*seconds sprite? i mean NPC sprite ID with setarray[0]? 871,90,823,872 Can this be possible?
  10. I haven't experience that before, maybe you should grab the lua files from here: http://svn6.assembla.com/svn/ClientSide/ In my case: i just use data folder(for adding lots of customes) then i uncheck load lua before lub. This is my way^^ I'm currently using 2012-04-10aRagexeRE working fine.
  11. Congratulations as Developer here in rAthena, looking forward on to you =D

    1. Cydh

      Cydh

      Thank's, I hope. haha

  12. Brian has always a good idea when it comes to Innovative since eAthena :3
  13. i SHOULD bump on this, does any knows how to make it color Magenta? when i try in actual or in BrowEdit it shows like that in the image i provide. >,>
  14. I'm currently looking for how can i modify or set a format like this: (Lv 255 | 100% HP) The LEVEL and HP Percent should be in TOGETHER.
  15. Hello, i would like to ask, if how can i set or modify the display of monster's label. // Display some mob info next to their name? (add as needed) // (does not works on guardian or emperium) // 1: Display mob HP (Hp/MaxHp format) // 2: Display mob HP (Percent of full life format) // 4: Display mob's level show_mob_info: 1 I want that the format would be like this e.g (Lv 255 | 100% HP) If someone would help me, it would be greatly appreciated! Thank you!
  16. Hello, may i asked? what is the current version of this script has been fixed? 3.2D or 3.2E? when i download the 3.2E the version inside of the script is //===== Current Version: ===================================== //= 3.2D
  17. As long as the script works =D Thank YOU!
  18. Hi, just wanna ask, why is it doesn't work out, did i missed something Ughh...?! frontier.gat,139,219,0 script Portal 45,{ if (class < 4008 || class > 4022 || BaseLevel < 254 || JobLevel < 98) goto L_Accept; mes "[ ^0000FF"+strcharinfo(0)+"^000000 ]"; mes "It seems that, i can't enter?"; emotion e_hmm; close2; warp "SavePoint",0,0; end; L_Accept: warp "ars_dun04",51,17; end; }
  19. Drakkus

    ROCshield 2.5v

    @OFFTOPIC: Does this version works with Windows 8? i have try to patch it, but i have 'Error Handle' does anyone know how can i work with it? Thanks in Advance.
  20. Very unique scroll type thanks Brian!
  21. Thank you sir!
  22. Woah!!!!!!!! Thank you Myzter. i've been looking for this that has a mob modes^^
  23. Something wrong in your map >,> have you done any touches in the map side? If no, there's no problem when it comes in recompiling if you don't touches anything.
  24. Thank you DeadlySilence this is the best bank script every!!! :3
×
×
  • Create New...