Jump to content

Currently

Members
  • Posts

    313
  • Joined

  • Last visited

Everything posted by Currently

  1. From Topc: http://www.eathena.ws/board/index.php?showtopic=52122 War of Genesis III - Ragnarok vs Anime v1.0 Last Updated: 12-08-05 Download|Mirrors [01] [02] Screenshots [01] [02] [03] Example: Reply here please or message me. Thank you so much for whoever will provide. If you ask for a payment, I will purchase it.
  2. + Rep. Sorry to ask, I was also referring to the complete equipments / usables / etc. The "Full mall". If it has to be in paid service, I will purchase it. I tried to google and everything, but can't find a good one.
  3. Please solve this ASAP.
  4. I refined my weapon and armor, yet no bonus seems to apply. Any idea?
  5. Says "Not online or does not exist" to the target player.
  6. Aww. So this script only bugs in rAthena? Sad. I would really love to implement the "Dota" announcements though in PvP. Other recommendations?
  7. From link: http://rathena.org/board/topic/87122-%E2%99%A5-sim0ns-oldskool-script-collection/ //by Sim0n /* TODO: - Items für 1ne woche gespielt, 1 monat 1 jahr.... */ - script online_counter -1,{ OnInit: //--->AFK System<---\\ //Enable Anti AFK (Checks if the player moves or not) else the time will stop when a player stops mooving for X minutes and start when he's moving again set .anti_afk,1; //Time which is needed tiill the timer stops, if a player is AFK set .afk_mins,10; //--->Reward Item<---\\ //Get an Item each 24hrs after played a certain time (1 = Yes, 0 = No) set .getitem,0; //Time after you will get an item in minutes set .item_time,120; //Item and amount you will get set .item,512; set .item_amount,1; end; OnPCLoginEvent: if(!.anti_afk) { //Without AFK System set login_time,gettimetick(2); dispbottom callfunc("seconds_to_days", sum_time_char, 0); dispbottom callfunc("seconds_to_days", ##sum_time_acc, 1); if (.getitem) { if (gettimetick(2)-last_login >= 86400) { set last_login,gettimetick(2); set got_item,0; } if (!got_item) { sleep2 (.item_time)*60000; announce "You played more then "+ .item_time +" minutes! Here's your gift!",bc_self,0xFF0000; //Reward item getitem .item, .item_amount; set got_item,1; } } end; } else { //With AFK System dispbottom callfunc("seconds_to_days", sum_time_char, 0); dispbottom callfunc("seconds_to_days", ##sum_time_acc, 1); //dispbottom "[OC DEBUG] AFK Mins: "+.afk_mins; while ( isloggedin( getcharid(3), getcharid(0) ) ) { getmapxy @OC_map$, @OC_x, @OC_y, 0; //dispbottom "[OC DEBUG] "+ @OC_map$ +" == "+ @OC_map_cache$ +" && "+ @OC_x_cache +" == "+ @OC_x +" && "+ @OC_y_cache +" == "+ @OC_y; //dispbottom "[OC DEBUG] IF = "+ (@OC_map$ == @OC_map_cache$ && @OC_x_cache == @OC_x && @OC_y_cache == @OC_y); if (@OC_map$ == @OC_map_cache$ && @OC_x_cache == @OC_x && @OC_y_cache == @OC_y) { set OC_afk_run,OC_afk_run + 1; if (OC_afk_run >= .afk_mins) { set OC_afk, 1; announce "You didn't move for "+ .afk_mins +" minute(s). Online Time Counter stopped.",bc_self,0xFF0000; } } else { set OC_afk, 0; if (OC_afk_run >= afk_mins) { announce "Online Time Counter Started again.",bc_self,0xFF0000; set OC_afk_run,0; } } sleep2 60000; set @OC_map_cache$, @OC_map$; set @OC_x_cache, @OC_x; set @OC_y_cache, @OC_y; } } OnPCLogoutEvent: if(!.anti_afk) { //Without AFK System set logout_time,gettimetick(2); if (login_time) set sum_time_char, sum_time_char + logout_time - login_time; set ##sum_time_acc, ##sum_time_acc + logout_time - login_time; } else set ##sum_time_acc, ##sum_time_acc + tmp_online_sec; if (##sum_time_acc < sum_time_char) set ##sum_time_acc, ##sum_time_acc + sum_time_char; OnWhisperGlobal: //RESET Time, only GMs if (getgmlevel() >= 60 && @whispervar0$ == "reset") { set ##sum_time_acc,0; set sum_time_char,0; dispbottom "[Online Counter] Time resetted..."; } end; } - script online_seconds_counter -1,{ OnPCLoginEvent: if(getvariableofnpc( .anti_afk, "online_counter" )) { while (!OC_afk) { sleep2 1000; set sum_time_char, sum_time_char + 1; set tmp_online_sec, tmp_online_sec + 1; if (getvariableofnpc( .getitem, "online_counter" )) { if (gettimetick(2)-last_login >= 86400) { set last_login,gettimetick(2); set got_item,0; } if (tmp_online_sec == getvariableofnpc( .item_time, "online_counter" )) { announce "You played more then "+ getvariableofnpc( .item_time, "online_counter" ) +" minutes! Here's your gift!",bc_self,0xFF0000; //Reward item getitem getvariableofnpc( .item_time, "online_counter" ),getvariableofnpc( .item_amount, "online_counter" ); set got_item,1; } } } } } function script seconds_to_days { set @days, getarg(0) / 86400; set @hrs, (getarg(0) - @days * 86400) / 3600; set @mins, (getarg(0) - (@hrs * 3600) - (@days * 86400)) / 60; set @sec, getarg(0) - (@hrs * 3600) - (@mins * 60) - (@days * 86400); if (!getarg(1)) set @time$,"[Online Counter Current Char] Days: "+ @days +" || Hours: "+ @hrs +" || Mins: "+ @mins +" || Seconds: "+@sec; else set @time$,"[Online Counter Account] Days: "+ @days +" || Hours: "+ @hrs +" || Mins: "+ @mins +" || Seconds: "+@sec; return @time$; } Instead of an item, what to change to make it "#Time" variable points per minute?
  8. The .wav file is in the wav folder. It sounds when the killing spree happens. So, I'm pretty sure that's not the problem. Should I remove the script down from my server? Or any other alternatives?
  9. Topic: http://rathena.org/board/topic/58222-ghosts-scripts-latest-ghosts-pvp-system-v13/ [Debug]: mapindex_name2id: Map "Test" not found in the index list! [Error[: Server received crash..... The name of the character is "Test". Once the "Killer" gets up to 4th killing spree. The map server crashes. Please help. This is crucial to the server. Thank you in advance.
  10. pvp_n_3-4,47,164,4 script Dbz 111,{ close; OnMinute00: announce "Dragons arrived here at Dreamworks Town! Kill them & obtain a Dragon Ball! Collect all 7 then find King Dragon!",bc_all; monster "lunar01"--ja--",1514,199; monster "lunar01"--ja--",1514,1,strnpcinfo(0)+"::OnKilled"; end; OnKilled: announce ""+strcharinfo(0)+" killed the real dragon! All of the dragon balls is now in his hands!",bc_all; message strcharinfo(0),"Talk to King Dragon at Quest Area!"; getitem 25120,1; getitem 25121,1; getitem 25122,1; getitem 25123,1; getitem 25124,1; getitem 25125,1; getitem 25126,1; end; } Error: Unexpected line 7, (monster "lunar01"--ja--",1514,199;)
  11. Can somebody please create a duplicate of this bonus? Maybe like bonus HPDrainRate2? It's because something happened or maybe I edited a source mod and I can't fix it anymore. I tried my best I promise. If I do have to pay somebody if it is complicated. Please PM me or simply reply. Thank you so much.
  12. I tested it and everything. I refined my sword to 100. Though no extra Atk points is added to the stat table.
  13. I want to disable the mapflag for man_fild(s) and spl_fild(s) but I really can't find the mapflag for the maps. Anybody know where its located? PRE-renewal btw. Thank you.
  14. BUMP. Even the Solar Sword does not work. If somebody can get this to work, I will pay the price. PM me or reply here.
  15. It's set up correctly, the MaxHPrate works. But the HpDrainRate does not. Help!
  16. My client is 2012-04-10. Also, it has the IDs and descriptions in the Iteminfo.lub. Hm. I would pay anybody that can help me out with this.
  17. It seems to be perfectly edited, however everytime I try to slot Alice Cards or Thara Frog Cards. It just won't slot. Armors, headgears, other equips are all working though. Can somebody figure this out?
  18. Yes, I have resolved the issue. I changed the clientinfo.xml Last question, since I have paid for Asurahosting VPS. After the login screen where I put the username and password. After I connect to "ExcelsiorRO", it won't log on to the character screen. But the servers looks fine except the login_athena. Can anybody help me with this one? P.S. I tested it with ratemyserver.net and all of them are set to onine. I'm guess it's the client this time? Anybody please asap.
  19. Can't properly start the server due to this error -__-
  20. I'm not sure what should i put in "pc_status_def_rate:" so that players need 500 luk in order to completely block all status ailments.
×
×
  • Create New...