Jump to content

Aya

Members
  • Posts

    125
  • Joined

  • Last visited

Everything posted by Aya

  1. Hi rA! I don't know if im in the right section but why is it like these? When wearing shield, the def goes Negative.
  2. Read the Title. BUMP. Yes I can do that, but the problem is, I have Vset BTS Quest already implemented on my server. BUMP
  3. Hi again rAthena! =) I am the cutest person to request these NPC. So as the title say, instead of a Vset, I want you guys to make me one, Diablo Set Break The Seal Quest =) Thank you sooo much!
  4. Good job Goddameit! These is the script that has been discussed in Facebook. Lol
  5. I don't know then. I think this BUG has already been fixed by rAthena. You'll just edit the following here: src/map/battle.c src/map/skill.c src/map/pc.c
  6. This will not help the Topic Starter. I already tried this before. @Topic Starter: I told you already to update your SVN to the latest version of the SVN. It is already fixed.
  7. Already done this part, still not working.
  8. Why is it that, when the NPC starts the WoE SE, it doesn't have a warp in the menu? I mean, how can it allow players to warp on the castle when there's no "warp to castle" on the menu? Hmm.... correct me If I'm wrong. As you can see in the image, WoE SE is enabled (Himimm schg_cas01) but there's no "warp to castle" in the menu. And one thing more, it doesn't announce that the WoE has started.
  9. I need players in DeceiveRO soooooo baaad >.<

  10. Hi rAthena! These are my Guild Packages: I want an NPC to give those items to a qualified Guild =) Thank you!
  11. Search for Emistry's script. I think he has a script like this.
  12. I need this kind of script. Thank you!
  13. those scripts causes lags (memory leaks) because of too many loads. . . so i just want this for a simple script Somewhat true. Idk but sometimes I am experiencing LAG using Euphy's Script too. The problem when I use Toasty's, for example the schedule of WoE is 8:00 - 9:00 PM and KRIEMHILD SHOULD be the only castle open, but the problem is ALL other castles are open.
  14. Ohh Hi Emistry! =) I thought this thing can be done in a Script. Yes I have Harmony in my server, I just want to know if this can be fixed thru Scripts =) The harmony is soo expensive ;D
  15. Hi rAthena! =) I am here again to request an Anti Macro (F1 - F9 Spamming Tool) if it is possible. Please feel free to ask any question regarding this Macro thing ;D
  16. Im so confused naaaw @.@ /spiin

  17. Thank you for this Annie! <3 you. Now trying it .. =) It is now working =) I <3 you Annie! ;D :*
  18. Now testing Not Working. What I want is when I died, it will automatically revive will full HP and SP
  19. I am using Annie's custom_bg.txt script. My problem is, inside the Map, when Custom Battle Ground is on goin, when a player died, it will revive in the starting point but with 1 SP and HP. I want it to be, when revive, full HP and SP. Thank you =) - script custom_bg#control -1,{ OnInit: set .minplayer2start, 3; // minimum player to start setarray .rewarditem, 30000, 10, // reward to the winning team 30000, 3; // reward to the losing team set .startingscore, 15; // score at start set .eventlasting, 100; // event last 100 seconds end; OnStart: if ( getwaitingroomstate( 0, "red side" ) < .minplayer2start || getwaitingroomstate( 0, "blue side" ) < .minplayer2start ) end; set .red, waitingroom2bg( "guild_vs3", 13,50, strnpcinfo(0)+"::OnredQuit", strnpcinfo(0)+"::OnredDead", "red side" ); copyarray .team1aid[.@i], $@arenamembers[.@i], $@arenamembersnum; set .blue, waitingroom2bg( "guild_vs3", 86,50, strnpcinfo(0)+"::OnblueQuit", strnpcinfo(0)+"::OnblueDead", "blue side" ); copyarray .team2aid[.@i], $@arenamembers[.@i], $@arenamembersnum; delwaitingroom "red side"; delwaitingroom "blue side"; bg_warp .red, "guild_vs3", 13,50; bg_warp .blue, "guild_vs3", 86,50; set .score[1], .startingscore; set .score[2], .startingscore; bg_updatescore "guild_vs3", .score[1], .score[2]; sleep .eventlasting * 1000; if ( .score[1] == .score[2] ) mapannounce "guild_vs3", "Draw !", 0; else if ( .score[1] > .score[2] ) { mapannounce "guild_vs3", "red side wins !", 0; callsub L_reward, 1, 0; callsub L_reward, 2, 2; } else if ( .score[1] < .score[2] ) { mapannounce "guild_vs3", "blue side wins !", 0; callsub L_reward, 2, 0; callsub L_reward, 1, 2; } bg_warp .red, "revencia", 164,37; bg_warp .blue, "revencia", 164,37; bg_destroy .red; bg_destroy .blue; donpcevent "red side::OnInit"; donpcevent "blue side::OnInit"; end; L_reward: set .@size, getarraysize( getd(".team"+ getarg(0) +"aid") ); for ( set .@i, 0; .@i < .@size; set .@i, .@i +1 ) if ( isloggedin( getd(".team"+ getarg(0) +"aid["+ .@i +"]" ) ) ) getitem .rewarditem[ getarg(1) ], .rewarditem[ getarg(1) +1 ], getd(".team"+ getarg(0) +"aid["+ .@i +"]" ); return; OnredDead: callsub L_dead, 1; OnblueDead: callsub L_dead, 2; L_dead: set .score[ getarg(0) ], .score[ getarg(0) ] -1; bg_updatescore "guild_vs3", .score[1], .score[2]; if ( .score[ getarg(0) ] == 0 ) //awake strnpcinfo(0); areapercentheal "guild_vs3",13,50,86,50,100,100; end; OnredQuit: callsub L_quit, 1, .red; OnblueQuit: callsub L_quit, 2, .blue; L_quit: if ( bg_get_data( getarg(1), 0) ) end; set .score[ getarg(0) ], 0; awake strnpcinfo(0); percentheal 100, 100; end; } revencia,143,30,5 script red side 733,{ end; OnInit: waitingroom "Red Team", getvariableofnpc( .minplayer2start, "custom_bg#control" ) +1, "custom_bg#control::OnStart", getvariableofnpc( .minplayer2start, "custom_bg#control" ); end; } revencia,143,27,5 script blue side 734,{ end; OnInit: waitingroom "Blue Team", getvariableofnpc( .minplayer2start, "custom_bg#control" ) +1, "custom_bg#control::OnStart", getvariableofnpc( .minplayer2start, "custom_bg#control" ); end; } guild_vs3 mapflag battleground 2 guild_vs3 mapflag nosave SavePoint guild_vs3 mapflag nowarp guild_vs3 mapflag nowarpto guild_vs3 mapflag noteleport guild_vs3 mapflag nomemo guild_vs3 mapflag nopenalty
  20. how can i set my server time to PH time ? Ask your host to change your server time if you don't know what you're doing.
×
×
  • Create New...