Jump to content

xilence01

Members
  • Posts

    177
  • Joined

  • Last visited

Everything posted by xilence01

  1. Have this errors =(( pls help. ALT + E tabs and Palletes. [using alexandra's basic data folder] Also on the Char Making :
  2. 10/10 bro. cool background and lovely logo. keep it up
  3. I see. Anyway thanks for the info =))
  4. Hello there, I've found this on the net. Is this sprite for free or paid? If it's free can someone share this to me? just wanted the female sprite. thanks
  5. Hello rathena. Can someone make me a bidding npc script. Description : GM lvl 99 put/s an item to a npc. [jellopy] players using an item [tcg] will bid for the [jellopy] . the highest TCG bid. will get the [jellopy]. if two or more players have the same amount of bid. Then, there will be announcement. "There's a tie, Please Bid Again" after getting the [jellopy] there will be announcement "Playername" got the 'itemname[jellopy]' for 'amount of itemname [tcg] ' "itemname [tcg]" . Congratulations. Xilence01 got the Jellopy for 25 TCG. Congratulations. =-=-=-=-=-=-=-=-=-=-= Compatible for eAthena pls? Thanks in Advance. Hope you understand my english. Bump~
  6. found it in eathena. but link is broken http://www.eathena.ws/board/lofiversion/index.php/t260812.html
  7. how to add more event sets on the KoE script.? is there an option in the script to add more events instead of 4? thanks
  8. is this working on eathena? i tried it but too many errors on mapserver.
  9. 8/10. Very neat, simple and pretty.
  10. Sir about your KingOfEmperium script. the emblem is not showing on the flag. y?
  11. Does this script works for eAthena?
  12. another error : [Error]: script error on npc/custom/ptvspt.txt line 202 parse_line: expect command, missing function name or calling undeclared func tion 197 : 198 : OnPCDieEvent: 199 : OnPCLogoutEvent: 200 : if(strcharinfo(3) != "guild_vs4") end; 201 : setlook 7, pvp3vs3_ori_look; * 202 : 'p'vp3vs3_ori_look = 0; Yes, i'm using eathena.
  13. Sorry, Well i tried to fix the "tabs" but i can't click the npc. here it is : http://pastebin.com/kK3cJMMt =(( Help pls. i tried to checked mapserver here is the errors found. Got this error [Error]: script error on npc/custom/ptvspt.txt line 123 parse_line: expect command, missing function name or calling undeclared func tion 118 : announce "Team War : registration for 2 new teams are no w available",0; 119 : goto lend; 120 : close; 121 : } 122 : * 123 : for ( '.'@i, 0; .@i < $@members; .@i++ ) { 124 : if ( isloggedin( $@partymemberaidc2[.@i], $@partymemberc idtc2[.@i] ) ) { 125 : attachrid $@partymemberaidc2[.@i]; 126 : set pvp3vs3_ori_look, getlook(7); 127 : setlook 7, 521; 128 : }
  14. I see, can i have a favor? may you paste it on pastebin or any other paste tool?. because the "tabs" are missing. hehe Thanks. Bump~
  15. setlook <look type>,<look value>; can you give some example for this ser? change cloth color to "520" is this correct? setlook 7,520; ? does this command compatible with eathena? thanks for your answer Oh i get it. thanks i just added setlook after copyarray $@partymemberaid1[0],$@partymemberaid[0],$@members; for all the members change pallete. Thanks mr.goddameit. Pls close this topic =))
  16. Hello rAthena, can anyone edit this script? I want the party who chooses "red team" will changes the party member's @ccolor to "520" and the party who chooses "blue team" will changes the party member's @ccolor to "521". Hope you understand me. Thanks. //===== eAthena Script =======================================// //= Party vs Party Npc // //===== Originally By: =======================================// //= icabit69 // //===== Credits for help goes to: ============================// //= Rahuldev345 // //= Emistry // //===== Edited by: ===========================================// //= MrVandalBus // //==============================================================// //Warning! Dont edit unless you know what you are doing! //Updates: //* Fix the prize after the battle (Map 'valkyrie' instead of 'bat_b01') //* Easier to edit //* If the team loses, the players will be ressurected (If dead of course) //* Bug Exploit Thingy (only Lvl 60 GM can warp to there) valkyrie,49,49,0 script teamwarprize -1,2,2,{ OnTouch: getitem 20078,15; //edit the prize <item>,<amount> warp "prontera",156,191; close; } prontera,155,166,4 script Party vs Party (5v5)::teamwar 796,{ if (getgmlevel() >= 99){ menu "standard menu",standard,"reset",lend1; } standard: set $@members,5; // number of party members change this to your party size you want set $@start,0; getpartymember(getcharid(1)); set @partymembercount,$@partymembercount; if ( $@start==1) { mes "The Sign Ups are currently unavailable because a match is in progress. Don't hesitate to try again in a few minutes!"; close; } if ( @partymembercount==$@members) { mes "Hello "+strcharinfo(0)+" what do you want?"; if (($@TeamID1!=0) && ($@TeamID2!=0)) { mes "The Sign Ups are currently unavailable because a match is in progress. Don't hesitate to try again in a few minutes!"; close; } if ( getpartyleader(getcharid(1),2) != getcharid(0) ) { mes "Only party leader have the right to sign up / out from the game with me.."; close; } mes "Choose your team to register."; switch(select("Red Team - [" + GetPartyName($@TeamID1) + "] :Blue Team - [" + GetPartyName($@TeamID2) + "]")) { case 1: mes "[ Team War ]"; if ($@TeamID1==0 || getpartyname($@TeamID1)=="null") { getpartymember(getcharid(1)),1; getpartymember(getcharid(1)),2; copyarray $@partymembercidt1[0],$@partymembercid[0],$@members; copyarray $@partymemberaid1[0],$@partymemberaid[0],$@members; for (set .@i,0; .@i<$@members; set .@i,.@i+1) { if(isloggedin($@partymemberaid1[.@i],$@partymembercidt1[.@i])) set .@count,.@count+1; } if(.@count < $@members) { mes "You need all your party members to be online to Register"; close; } set $@TeamID1, getcharid(1); initnpctimer; mes "Your Party is now subscribed, good luck!"; announce "Team 1 : [ " +getpartyname($@TeamID1)+ " ] has sign up For the Team War!",bc_blue|bc_map; doevent "teamwar::OnSubscriptionTeam"; close; } else { mes "I'm sorry! Another Team has sign up before you..."; close; } case 2: mes "[ Team War ]"; if ($@TeamID2==0 || getpartyname($@TeamID2)=="null") { getpartymember(getcharid(1)),1; getpartymember(getcharid(1)),2; copyarray $@partymembercidt2[0],$@partymembercid[0],$@members; copyarray $@partymemberaid2[0],$@partymemberaid[0],$@members; for (set .@i,0; .@i<$@members; set .@i,.@i+1) { if(isloggedin($@partymemberaid2[.@i],$@partymembercidt2[.@i])) set .@count,.@count+1; } if(.@count < $@members) { mes "You need all your party members to be online to Register"; close; } set $@TeamID2, getcharid(1); initnpctimer; mes "Your Party is now subscribed, good luck!"; announce "Team 2 : [ " +getpartyname($@TeamID2)+ " ] has sign up For the Team War!",bc_blue|bc_map; doevent "teamwar::OnSubscriptionTeam"; close; } else { mes "I'm sorry! Another Team has sign up before you..."; close; } } } else { mes "[Event Handler]"; mes "Please contact your party leader."; mes "Your team must have a party consisting of "+$@members+" members."; close; } OnSubscriptionTeam: getpartymember($@TeamID2),1; getpartymember($@TeamID2),2; copyarray $@partymembercidtc2[0],$@partymembercid[0],$@members; copyarray $@partymemberaidc2[0],$@partymemberaid[0],$@members; for (set .@i,0; .@i<$@members; set .@i,.@i+1) { if(isloggedin($@partymemberaidc2[.@i],$@partymembercidtc2[.@i])) set .@countx,.@countx+1; } if(.@countx < $@members) { announce "Team War : "+getpartyname($@TeamID2)+"are not all online the match has been canceled",0; announce "Team War : registration for 2 new teams are now available",0; goto lend; close; } getpartymember($@TeamID1),1; getpartymember($@TeamID1),2; copyarray $@partymembercidtc1[0],$@partymembercid[0],$@members; copyarray $@partymemberaidc1[0],$@partymemberaid[0],$@members; for (set .@i,0; .@i<$@members; set .@i,.@i+1) { if(isloggedin($@partymemberaidc1[.@i],$@partymembercidtc1[.@i])) set .@countz,.@countz+1; } if(.@countz < $@members) { announce "Team War : "+getpartyname($@TeamID1)+"are not all online the match has been canceled",0; announce "Team War : registration for 2 new teams are now available",0; goto lend; close; } if($@TeamID1!=0 && $@TeamID2!=0){ announce "Team War : We have 2 Teams signed up now : "+getpartyname($@TeamID1)+" and "+getpartyname($@TeamID2)+".",bc_blue|bc_map; set @win1, 0; set @win2, 0; goto Onstart; } end; OnTimer50000: if (($@TeamID1!=0) && ($@TeamID2!=0)) { end; } stopnpctimer; set $@TeamID1, 0; set $@TeamID1, 0; announce "Team War : we lack teams to start registration for two teams are now available",0; end; OnStart: warpparty "guild_vs4",7,49,$@TeamID1; warpparty "guild_vs4",92,49,$@TeamID2; set $@start,1; end; lend: stopnpctimer; set $@TeamID1,0; set $@TeamID2,0; set $@start,0; set @win1,0; set @win2,0; set @partymembercount,$@members; end; lend1: stopnpctimer; set $@TeamID1,0; set $@TeamID2,0; set $@start,0; set @win1,0; set @win2,0; set @partymembercount,$@members; announce "Team War has been reset, you may register your team now",0; close; end; OnTimer250000: Announce "Team War : No Party won due to time limit!",0; mapwarp "guild_vs4","prontera",156,203; goto lend; end; OnPCDieEvent: OnPCLogoutEvent: if(strcharinfo(3) != "guild_vs4") end; warp "prontera",156,203; for(set .@i, 0; .@i < $@members; set .@i, .@i + 1) { if ( $@partymembercidt1[.@i] == getcharid(0)) { deletearray $@partymembercidt1[.@i], 1; if( getarraysize($@partymembercidt1) == 0 ) { set @win2,$@partymembercount; goto onwin; } } if ( $@partymembercidt2[.@i] == getcharid(0) ) { deletearray $@partymembercidt2[.@i], 1; if( getarraysize($@partymembercidt2) == 0 ) { set @win1,$@partymembercount; goto onwin; } } } end; onwin: if (@win1==0) { warpparty "valkyrie",49,49,$@TeamID2; warpparty "valkyrie",45,45,$@TeamID1; Announce "Team War :"+GetPartyName($@TeamID2)+" won againts "+GetPartyName($@TeamID1)+"",0; goto lend; end; } if (@win2==0) { warpparty "valkyrie",49,49,$@TeamID1; warpparty "valkyrie",45,45,$@TeamID2; Announce "Team War :"+GetPartyName($@TeamID1)+" won againts "+GetPartyName($@TeamID2)+"",0; goto lend; end; } end; } guild_vs4 mapflag nosave guild_vs4 mapflag nomemo guild_vs4 mapflag nobranch guild_vs4 mapflag pvp_noguild guild_vs4 mapflag nocommand 60 guild_vs4 mapflag noicewall guild_vs4 mapflag pvp valkyrie mapflag nosave valkyrie mapflag nomemo valkyrie mapflag nobranch valkyrie mapflag nocommand 60 valkyrie mapflag pvp_noparty valkyrie mapflag nowarpto 99 //Change the GM level if you desire to valkyrie mapflag nowarp 99 //Change the GM level if you desire to valkyrie,45,45,0 script alive -1,2,2,{ OnTouch: atcommand "@alive"; warp "prontera",156,191; close; } PS: Sorry for Bad english. BTW: ( @ccolor 520 = red ) and ( @ccolor 521 = blue ) in my server palletes. BUMP
  17. Hi, why does the guild emblem of the current guild who captured the koe emp. doesnt show up in the flag? Pls help. thanks. PS: Sorry for bad english. Oh, fixed it hehe. i replaced the flag script to this - script KoEFlag 723,-1,-1,{ set .@gid, $KOEGUILD; if ( .@gid == 0 ) end; mes "[Emperium Hill]"; mes " "; if($KOEGUILD!=0) { mes "The King Of Emperium Hill is the ["+GetGuildName ($KOEGUILD)+"] guild."; } else { mes "Only the strongest warriors should may over take Emperium Hill!"; } close; OnRevKoE: flagemblem $KOEGUILD; end; OnInit: flagemblem $KOEGUILD; end; }
  18. does Hunting Mission Script only for rAthena? im using eathena and it cannot click the npc, i got this error * 51 : 'f'reeloop(1); .
  19. Hello rAthena, can someone give me a recolor version of card (black). pls. thanks in advance. (sprite + item + collection) ty.
  20. Thanks, but how to script this? Destroy an enemy's armor, shield and weapon by 5% and this 1% Chance of Auto-Casting ^880000Wide Freeze and Wide Stone^000000
  21. Please help po. Kung sino man po ang may magandang loob na iScript to for item db. maraming salamat po. More Power rAthena. ======================================================================= 29888# Champion Card. Enables use of ^008800Level 1 Body Relocation^000000. 10% Chance of Auto-Casting ^880000Level 5 Dangerous Soul Collect^000000 [^008800Monk Class ^000000] Increase ^880000Investigate^000000 damage by 80% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Footgear^000000 Weight :^777777 1^000000 # 29887# Creator Card. Enables use of ^008800Level 5 Full Chemical Protection^000000. Destroy an enemy's armor, shield and weapon by 5%. [^008800Alchemist Class ^000000] Increase ^880000Acid Demonstration^000000 damage by 40% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Armor^000000 Weight :^777777 1^000000 # 29886# Ninja Card. Enables use of ^008800Level 1 Reverse Tatami^000000. 5% Chance of Auto-Casting ^880000Level 3 Water Escape Technique^000000 1% Chance of Auto-Casting ^880000Level 3 Cast-off Ciceda Shell^000000 [^008800Ninja Class ^000000] Increase ^880000Final Strike^000000 damage by 25% Class :^777777 Card^000000 Compound on :^777777 Footgear^000000 Weight :^777777 1^000000 # 29885# Paladin Card. 2% Chance of Auto-Casting ^880000Auto Guard, Defender and Reflect Shield^000000 when recieving hit. [^008800Crusader Class ^000000] Increase ^880000Shield Chain and Grand Cross^000000 damage by 50% HP + 10% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29884# Professor Card. Add a 5% chance of auto casting ^880000Level 1 Land Protector^000000 around the user when the user receives Magical Damage. 3% Chance of Auto-Casting ^880000Level 1 Wall of fog^000000 [^008800Sage Class ^000000] 1% Chance of Auto-Casting ^880000Wide Freeze and Wide Stone^000000 ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Headgear^000000 Weight :^777777 1^000000 # 29883# Star Gladiator Card. Allstats + 15 Flee + 15%, Perfect Dodge + 3% [^008800Star Gladiator Class ^000000] Increase damage on DemiHuman monster by 50%. HP + 10% Class :^777777 Card^000000 Compound on :^777777 Headgear^000000 Weight :^777777 1^000000 # 29882# Stalker Card. Enables use of ^008800Level 3 Chase Walk^000000. 3% Chance of Auto-Casting ^880000Level 1 Full Strip^000000 when attacking. [^008800Rogue Class ^000000] Increase ^880000Back Stab^000000 damage by 200% Hit + 30 ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29881# Gunslinger Card. 5% Chance of Auto-Casting ^880000Level 10 Rapid Shower^000000 [^008800Gunslinger Class ^000000] Increase damage of ^880000Desperado^000000 and ^880000Rapid Shower^000000 25% Hit + 15 ^FF00001 Card restriction.^000000 Class :^777777 Weapon^000000 Weight :^777777 1^000000 # 29880# Assassin Cross Card. 10% Chance of Auto-Casting ^880000Enchant Deadly Poison^000000 when attacking. [^008800Assassin Class ^000000] Increase ^880000Sonic Blow^000000 damage by 10% Increase ^880000Soul Destroyer^000000 damage by 25% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29879# Artist Card. Reduces all skill's after-cast delay by 30%. [^008800Clown/Gypsy Class ^000000] Increase ^880000Arrow Vulcan^000000 damage by 30% Increase damage on DemiHuman monster by 10%. Perfect Dodge + 5 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # ========================================================= 29888#Champion Card# 29887#Creator Card# 29886#Ninja Card# 29885#Paladin Card# 29884#Professor Card# 29883#Star Gladiator Card# 29882#Stalker Card# 29881#Gunslinger Card# 29880#Assassin Cross Card# 29879#Artist Card#
  22. Can anyone script this pls? =((. For itemdb2. Thanks in Advance rAthena. =( ======================================================================= 29888# Champion Card. Enables use of ^008800Level 1 Body Relocation^000000. 10% Chance of Auto-Casting ^880000Level 5 Dangerous Soul Collect^000000 [^008800Monk Class ^000000] Increase ^880000Investigate^000000 damage by 80% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Footgear^000000 Weight :^777777 1^000000 # 29887# Creator Card. Enables use of ^008800Level 5 Full Chemical Protection^000000. Destroy an enemy's armor, shield and weapon by 5%. [^008800Alchemist Class ^000000] Increase ^880000Acid Demonstration^000000 damage by 40% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Armor^000000 Weight :^777777 1^000000 # 29886# Ninja Card. Enables use of ^008800Level 1 Reverse Tatami^000000. 5% Chance of Auto-Casting ^880000Level 3 Water Escape Technique^000000 1% Chance of Auto-Casting ^880000Level 3 Cast-off Ciceda Shell^000000 [^008800Ninja Class ^000000] Increase ^880000Final Strike^000000 damage by 25% Class :^777777 Card^000000 Compound on :^777777 Footgear^000000 Weight :^777777 1^000000 # 29885# Paladin Card. 2% Chance of Auto-Casting ^880000Auto Guard, Defender and Reflect Shield^000000 when recieving hit. [^008800Crusader Class ^000000] Increase ^880000Shield Chain and Grand Cross^000000 damage by 50% HP + 10% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29884# Professor Card. Add a 5% chance of auto casting ^880000Level 1 Land Protector^000000 around the user when the user receives Magical Damage. 3% Chance of Auto-Casting ^880000Level 1 Wall of fog^000000 [^008800Sage Class ^000000] 1% Chance of Auto-Casting ^880000Wide Freeze and Wide Stone^000000 ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Headgear^000000 Weight :^777777 1^000000 # 29883# Star Gladiator Card. Allstats + 15 Flee + 15%, Perfect Dodge + 3% [^008800Star Gladiator Class ^000000] Increase damage on DemiHuman monster by 50%. HP + 10% Class :^777777 Card^000000 Compound on :^777777 Headgear^000000 Weight :^777777 1^000000 # 29882# Stalker Card. Enables use of ^008800Level 3 Chase Walk^000000. 3% Chance of Auto-Casting ^880000Level 1 Full Strip^000000 when attacking. [^008800Rogue Class ^000000] Increase ^880000Back Stab^000000 damage by 200% Hit + 30 ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29881# Gunslinger Card. 5% Chance of Auto-Casting ^880000Level 10 Rapid Shower^000000 [^008800Gunslinger Class ^000000] Increase damage of ^880000Desperado^000000 and ^880000Rapid Shower^000000 25% Hit + 15 ^FF00001 Card restriction.^000000 Class :^777777 Weapon^000000 Weight :^777777 1^000000 # 29880# Assassin Cross Card. 10% Chance of Auto-Casting ^880000Enchant Deadly Poison^000000 when attacking. [^008800Assassin Class ^000000] Increase ^880000Sonic Blow^000000 damage by 10% Increase ^880000Soul Destroyer^000000 damage by 25% ^FF00001 Card restriction.^000000 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # 29879# Artist Card. Reduces all skill's after-cast delay by 30%. [^008800Clown/Gypsy Class ^000000] Increase ^880000Arrow Vulcan^000000 damage by 30% Increase damage on DemiHuman monster by 10%. Perfect Dodge + 5 Class :^777777 Card^000000 Compound on :^777777 Accessory^000000 Weight :^777777 1^000000 # ========================================================= 29888#Champion Card# 29887#Creator Card# 29886#Ninja Card# 29885#Paladin Card# 29884#Professor Card# 29883#Star Gladiator Card# 29882#Stalker Card# 29881#Gunslinger Card# 29880#Assassin Cross Card# 29879#Artist Card#
×
×
  • Create New...