

Heartfelt
Members-
Posts
40 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Heartfelt
-
hateffect visible when character using skill hide/cloaking
Heartfelt posted a question in General Support
how to fix hateffect being visible when character using skill hide/cloaking? but some of them are fine for example HAT_EF_DOUBLEGUMGANG is visible when using cloaking but HAT_EF_Blessing_Of_Angels is just fine, its not visible when cloaking please help thx -
how to make Invasion event NPC triggered by GM instead of autostart?
Heartfelt replied to Heartfelt's question in Scripting Support
thanks sir -
how to make Invasion event NPC triggered by GM instead of autostart?
Heartfelt replied to Heartfelt's question in Scripting Support
thanks for replying sir i'd like to know how to do it sir? i've been receiving error so many times trying to get it done ? -
i want to change this auto event to event only start when GM want to start it this is the script - script TownInvasion -1,{ OnClock0000: OnClock1130: OnClock1630: OnClock2230: for(.@i = 0; .@i < 1; .@i++) { //Spawn on 4 towns .Town_Invade$ = .Town$[rand(getarraysize(.Town$))]; announce .Town_Invade$+" Guard: Help us! Our town is being invaded by Monster! Please Help us now!",bc_blue|bc_all; sleep 10000; announce .Town_Invade$+" Guard: Help us! Smash their Heads using your Weapon!!!",bc_blue|bc_all; sleep 8000; announce .Town_Invade$+" Guard: Come here!! Bring warrior! Kill these monsters!",bc_blue|bc_all; for(.@ix = 0; .@ix < 30; .@ix++) { //MvP spawner monster .Town_Invade$,0,0,"--ja--",.MvP[rand(getarraysize(.MvP))],1,strnpcinfo(1)+"::OnInvadeDeath"; } for(.@iy = 0; .@iy < 10; .@iy++) { //Mob spawner monster .Town_Invade$,0,0,"--ja--",-1,1,strnpcinfo(1)+"::OnMobsDeath"; } } end; OnInvadeDeath: .@RandMvP = rand(getarraysize(.Prize)); getitem .Prize[.@RandMvP],.PAmt[.@RandMvP]; end; OnMobsDeath: .@RandMob = rand(getarraysize(.Prize2)); getitem .Prize2[.@RandMob],.PAmt2[.@RandMob]; end; OnInit: //Towns to Invade setarray .Town$[0],"prontera","izlude","geffen","payon"; //MvPs to summon setarray .MvP[0],1196,1197,1483,1778; //Prize to give MVP setarray .Prize[0],7929; setarray .PAmt[0],10; //Prize to give Mobs setarray .Prize2[0],7929; setarray .PAmt2[0],10; end; } please help thanks a lot
-
- Id: 19266 AegisName: Survive_Circlet_ Name: Survivor's Circlet Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true EquipLevelMin: 1 Refineable: true View: 1220 Script: | how can i add 15% chance of gaining 20% of magic attack for 3 seconds every time the wearer receive any damage? please help thanks
-
Debug in Card Recycle NPC. how to fix this?
Heartfelt replied to Heartfelt's question in Scripting Support
anyone please? -
any way to fix this thing? happens when i exchange cards for points im using this script //===== rAthena Script ======================================= //= Card Trader //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Exchange cards for points. //============================================================ prontera,277,268,3 script Card Trader 743,{ mes "[Card Trader]"; mes "Hi, "+strcharinfo(0)+"!"; mes "What can I do for you?"; next; switch(select(" > Information: > Trade in cards: > Point shop (^0055FF"+getd(.Points$)+"^000000): > Leave")) { case 1: mes "[Card Trader]"; mes "Do you find that you've got"; mes "useless cards lying around?"; mes "I'll be glad to take them off"; mes "your hands!"; next; mes "[Card Trader]"; mes "I'll give you ^0055FF"+.Points[0]+" Point"+((.Points[0] == 1)?"":"s")+"^000000 for each"; mes "card you give me, and"; mes "You can trade those points"; mes "for items later on."; mes "How does that sound?"; next; close; case 2: mes "[Card Trader]"; mes "Select the cards you"; mes "want to trade in."; if (.Level) { mes " "; mes "They must be dropped"; mes "by monsters of level"; mes .Level+" and above."; } deletearray @sold_nameid[0],getarraysize(@sold_nameid); callshop "card_shop",2; npcshopattach "card_shop"; end; case 3: mes "[Card Trader]"; mes "You have ^0055FF"+getd(.Points$)+"^000000 Point"+((getd(.Points$) == 1)?".":"s."); callshop "card_shop",1; npcshopattach "card_shop"; end; case 4: mes "[Card Trader]"; mes "*yawn*"; mes "See you later!"; next; close; } OnSellItem: mes "Cards to sell:"; mes "-----------------------------------"; for(set .@i,0; .@i<getarraysize(@sold_nameid); set .@i,.@i+1) if (@sold_nameid[.@i] > 4000 && @sold_nameid[.@i] < 4700) { if (.Level) { query_sql("SELECT `LV` FROM `mob_db` WHERE `DropCardid` = "+@sold_nameid[.@i],.@lv); if (.@lv < .Level) { dispbottom getitemname(@sold_nameid[.@i])+" is under the minimum level."; continue; } } set .@card_id[getarraysize(.@card_id)], @sold_nameid[.@i]; set .@card_amt[getarraysize(.@card_amt)], @sold_quantity[.@i]; set .@mvp, compare(.MVP$,""+@sold_nameid[.@i]); mes ((.@mvp)?" ^FF0000":" ^777777")+@sold_quantity[.@i]+"x "+getitemname(@sold_nameid[.@i])+"^000000"; set .@card_total, .@card_total+(@sold_quantity[.@i]*((.@mvp)?.Points[1]:.Points[0])); } deletearray @sold_nameid[0], getarraysize(@sold_nameid); deletearray @sold_quantity[0], getarraysize(@sold_quantity); if (!.@card_id) { mes " ^777777(none)^000000"; next; close; } mes " "; mes "--- Total: ^0055FF"+.@card_total+" points.^000000 ---"; next; if(select(" > ^0055FFComplete trade...^000000: > ^777777Cancel^000000") == 2) { mes "[Card Trader]"; mes "Oh, okay..."; next; close; } for(set .@i,0; .@i<getarraysize(.@card_id); set .@i,.@i+1) delitem .@card_id[.@i],.@card_amt[.@i]; setd .Points$, getd(.Points$)+.@card_total; mes "[Card Trader]"; mes "All done!"; next; close; OnBuyItem: for(set .@i,0; .@i<getarraysize(@bought_nameid); set .@i,.@i+1) for(set .@j,0; .@j<getarraysize(.Shop); set .@j,.@j+2) if (@bought_nameid[.@i] == .Shop[.@j]) { set .@cost, .@cost+(.Shop[.@j+1]*@bought_quantity[.@i]); break; } if (.@cost > getd(.Points$)) { mes "[Card Trader]"; mes "You don't have enough Points."; } else { mes "Items purchased:"; mes "-----------------------------------"; for(set .@i,0; .@i<getarraysize(@bought_nameid); set .@i,.@i+1) { getitem @bought_nameid[.@i], @bought_quantity[.@i]; mes " ^777777"+@bought_quantity[.@i]+"x "+getitemname(@bought_nameid[.@i])+"^000000"; } mes " "; mes "---------- Total: ^0055FF"+.@cost+" pt.^000000 -------"; setd .Points$, getd(.Points$)-.@cost; } deletearray @bought_nameid[0], getarraysize(@bought_nameid); deletearray @bought_quantity[0], getarraysize(@bought_quantity); next; close; OnInit: set .Level,0; // Minimum monster level to trade corresponding cards. set .Points$,"#Card_Points"; // Variable to store points. setarray .Shop[0], // Card Shop items: <ID>,<point cost> 7227,50, 20191,150, setarray .Points[0],1,1; // Points per <normal card>,<MVP card> set .MVP$, // List of MVP cards. "4121,4123,4128,4131,4132,4134,4135,4137,4142,4143,4144,4145,4146,4147,4148,4168,4236,"+ "4241,4263,4276,4302,4305,4318,4324,4330,4342,4357,4359,4361,4363,4365,4399,4403,4407"; npcshopdelitem "card_shop",909; for(set .@i,0; .@i<getarraysize(.Shop); set .@i,.@i+2) npcshopadditem "card_shop",.Shop[.@i],.Shop[.@i+1]; end; } - shop card_shop -1,909:364 thanks
-
so im using this NPC but it seems that when i use lord knight with the rune knight costume it doesn't show the dragon. but the character still in the status of riding a peco peco any way to fix? thanks //===== rAthena Script ======================================= //= Dress Room //===== Description ========================================== //= Dress room NPC that allows players to disguise as another //= class in their classline. //===== By: ================================================== //= Secret's Scripting Service //===== Changelog: =========================================== //= 1.0 Initial version. [Secret] //===== License: ============================================= // Copyright 2018 Jittapan P. // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), //= to deal in the Software without restriction, including without limitation the rights to use, //= copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, //= and to permit persons to whom the Software is furnished to do so, subject to the following conditions: //= //= The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. //= //= THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, //= EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //= FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. //= IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, //= DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, //= TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. //============================================================ morocc,167,95,4 script Dress Room#sc 2_M_DYEINGER,{ function RestrictClass; function HasjROCostume; function ChangeAppr; function RestrictClass { .@eaj = eaclass(); if(.@eaj&EAJ_BASEMASK == EAJ_NOVICE) return 0; if(.@eaj&EAJL_2 && roclass(.@eaj|EAJL_UPPER) != -1){ return 1; } return 0; } function HasjROCostume { switch(roclass(eaclass()&EAJ_UPPERMASK|EAJL_THIRD)) { case Job_Guillotine_Cross: case Job_Genetic: case Job_Royal_Guard: case Job_Arch_Bishop: case Job_Mechanic: case Job_Ranger: case Job_Minstrel: case Job_Wanderer: case Job_Warlock: // Uncomment lines below to enable certain job when their respective jRO costume is released and you patched the sprite in your client. //case Job_Sorcerer: //case Job_Sura: //case Job_Rune_Knight: return 1; default: return 0; } } function ChangeAppr { if(Zeny < .cost_dressroom) { mes .n$; mes "You don't have enough Zeny."; close; } switch(getarg(1)){ case 0: // Normal Mode setlook LOOK_BODY2,0; changebase getarg(0); set baselook, getarg(0); break; case 1: // jRO Mode if(!HasjROCostume()) return; changebase roclass(eaclass()|EAJL_THIRD); setlook LOOK_CLOTHES_COLOR,0; setlook LOOK_BODY2,!(getlook(LOOK_BODY2)); //atcommand "@bodystyle " + !(getlook(LOOK_BODY2)); baselook = 0; break; } Zeny -= .cost_dressroom; mes .n$; mes "Here you are!"; close; } .@TYPE_CHANGEBASE = 0; .@TYPE_SETLOOK = 1; mes .n$; if(!RestrictClass()){ mes "Your class isn't allowed to use this NPC."; close; } mes "I can change your appearance to another class of your classline at a cost of ^FF0000" + callfunc("F_InsertComma",.cost_dressroom) + "^000000z!"; if(HasjROCostume()){ mes "I also have a brand new costume for your class!"; } mes "Which class do you want to change your appearance to?"; next; switch(select(jobname(roclass(eaclass()&EAJ_UPPERMASK)),jobname(roclass(eaclass()&EAJ_UPPERMASK|EAJL_UPPER)),jobname(roclass(eaclass()|EAJL_THIRD)),HasjROCostume() ? getlook(LOOK_BODY2) ? "Restore costume" : "New jRO costume" : "")) { case 1: ChangeAppr(roclass(eaclass()&EAJ_UPPERMASK),.@TYPE_CHANGEBASE); break; case 2: ChangeAppr(roclass(eaclass()&EAJ_UPPERMASK|EAJL_UPPER),.@TYPE_CHANGEBASE); break; case 3: ChangeAppr(roclass(eaclass()|EAJL_THIRD),.@TYPE_CHANGEBASE); break; case 4: ChangeAppr(0,.@TYPE_SETLOOK); break; } close; OnPCLoginEvent: if(baselook && .dress_perma){ changebase baselook; } end; OnInit: .n$ = "[Dress Room]"; // NPC Name .cost_dressroom = 10000; // Cost .dress_perma = 1; }
-
How to make list of quest item requirement Descending?
Heartfelt replied to Heartfelt's question in Scripting Support
thanks a lot sir it's fixed now -
How to make list of quest item requirement Descending?
Heartfelt replied to Heartfelt's question in Scripting Support
anyone please? hello sir thanks for answering anyway the problem still persists the thing is its only happening to client 2020 everything is fine with the 2018 one lemme make the request clear i would like to make the quest requirement look neat descending to the bottom like this > Zeny (500.000) > Poring Coin(50) > etc > etc thanks anyone can help? please -
change OnMinute00 to specific time in a day LMS script
Heartfelt replied to Heartfelt's question in Scripting Support
sorry im noob.. which part sir? -
change OnMinute00 to specific time in a day LMS script
Heartfelt posted a question in Scripting Support
how can i change this LMS script to start at 1 PM 3 PM 5 PM and 7 PM only? thanks in advance // Edit by Mabuhay - script Event_LMS -1,{ OnInit: // item reward setarray .item, 501, 10, 502, 5; // @lmsstart - gm manual start bindatcmd "lmsstart", strnpcinfo(0)+"::OnStart",60,60; // @lms - player join event bindatcmd "lms", strnpcinfo(0)+"::OnJoinEvent"; // Event cooldown .event_cd = 60 * 60 * 1; // 1hr // Mapflags setarray .@mapflag, mf_nowarp, mf_nowarpto, mf_noteleport, mf_nomemo, mf_nosave, mf_noicewall, mf_nobranch, mf_noreturn; for ( .@i = 0; .@i < getarraysize(.@mapflag); .@i++) setmapflag "06guild_01", .@mapflag[.@i]; .@min = gettime(DT_MINUTE)*60; .@sec = gettime(DT_SECOND); .event_time = (gettimetick(2) - ( .@min + .@sec )) + .event_cd - 5; end; OnJoinEvent: mes " [ Event Status ] "; if ( !.start ) mes "Next schedule starts in ^FF0000"+ Time2Str(.event_time) +"^000000."; if ( .start == 1 ) mes "Event is currently active."; if ( .start == 2 ) mes "Event is currently on-going."; next; switch(select( "Last Man Standing Event - "+ ((.start == 1) ? "^00ff00Join Event":((.start == 2) ? "^00ff00Event On-Going":"^ff0000Not Available"))+"^000000" )) { case 1: if ( !.start ) { mes "Event is not available."; close; } else if ( .start == 2 ) { mes "Event is on-going"; close; } else warp "06guild_01",0,0; } end; OnStart: .@force = true; OnMinute00: // runs hourly .@time = gettimetick(2); .@min = gettime(DT_MINUTE)*60; .@sec = gettime(DT_SECOND); if ( .event_time > .@time && !.@force || .start && !.@force ) end; // doesnt start if cd isn't done. .event_time = (.@time - ( .@min + .@sec )) + .event_cd - 5; .start = 1; pvpoff "06guild_01"; announce "LMS: We are going to have a Last Man Standing event.",0; sleep 10000; announce "LMS: For those who wants to join, use @lms",0; sleep 10000; announce "LMS: After 1 Minute Event will close.",0; sleep 10000; announce "LMS: So please if you want to join. use @lms",0; sleep 60000; announce "LMS: The entry to the event is now closed.",bc_all,0x0ceedb; if ( getmapusers("06guild_01") < 2 ) { announce "LMS: Not enough participants.",bc_all,0x0ceedb; .start = false; end; } .start = 2; sleep 3500; mapannounce "06guild_01","We're about to begin the event.",bc_map,0x0ceedb; sleep 2500; mapannounce "06guild_01","The rules are simple.",bc_map,0x0ceedb; sleep 2500; mapannounce "06guild_01","Kill everyone in the map.",bc_map,0x0ceedb; sleep 2500; mapannounce "06guild_01","Last Man Standing wins!",bc_map,0x0ceedb; sleep 2000; mapannounce "06guild_01","That's all. Let's begin.",bc_map,0x0ceedb; sleep 3000; for (.@i = 10; .@i > 0; .@i--) { mapannounce "06guild_01", "LMS: -- "+.@i+" --",bc_map,0x0ceedb; sleep 1000; } mapannounce "06guild_01", "LMS: Fight! ",bc_map,0x0ceedb; pvpon "06guild_01"; .timer = 0; initnpctimer; end; OnTimer5000: // check every 5 secs.. .timer++; .@size = getmapusers("06guild_01"); if ( .@size > 1 && .timer == 6 ) { .timer = 0; mapannounce "06guild_01", "LMS: "+ .@size +" players left..", bc_blue; } else if ( .@size <= 1 ) donpcevent strnpcinfo(3)+"::OnEndEvent"; setnpctimer 0; end; OnEndEvent: stopnpctimer; .start = false; pvpoff "06guild_01"; mapannounce "06guild_01", "LMS: Event ended!",bc_map,0x0ceedb; sleep 5000; .@size = getmapunits(BL_PC,"06guild_01",.@aid); if ( .@size == 0 ) { announce "LMS: No winners.",0; end; } .@amt = getarraysize(.item); attachrid .@aid; announce strcharinfo(0)+" has won the Last Man Standing Event.",bc_all,0x0ceedb; for ( .@j = 0; .@j < .@amt; .@j += 2 ) getitem .item[.@j], .item[.@j+1]; warp "invek",rand(146,164),rand(149,164); end; OnPCDieEvent: if ( .start && strcharinfo(3) == "06guild_01" ) { warp "invek",rand(146,164),rand(149,164); .@size = getmapusers("06guild_01"); if ( .@size > 1 ) mapannounce "06guild_01", "LMS: "+ .@size +" players left..", bc_blue; else if ( .@size <= 1 ) donpcevent strnpcinfo(3)+"::OnEndEvent"; } end; } -
How to make list of quest item requirement Descending?
Heartfelt posted a question in Scripting Support
hello everyone as the title says, i would like to make this list of requirement descending anyone knows? help please thanks here is the script // Dummy shop data -- copy as needed. //============================================================ - shop qshop1 -1,909:-1 - shop qshop2 -1,909:-1 - shop qshop3 -1,909:-1 - shop qshop4 -1,909:-1 - shop qshop5 -1,909:-1 - shop qshop6 -1,909:-1 - shop qshop7 -1,909:-1 - shop qshop8 -1,909:-1 - shop qshop9 -1,909:-1 - shop qshop10 -1,909:-1 - shop qshop11 -1,909:-1 - shop qshop12 -1,909:-1 - shop qshop13 -1,909:-1 - shop qshop14 -1,909:-1 - shop qshop15 -1,909:-1 - shop qshop16 -1,909:-1 - shop qshop17 -1,909:-1 - shop qshop18 -1,909:-1 - shop qshop19 -1,909:-1 - shop qshop20 -1,909:-1 - shop qshop21 -1,909:-1 - shop qshop22 -1,909:-1 - shop qshop23 -1,909:-1 - shop qshop24 -1,909:-1 - shop qshop25 -1,909:-1 - shop qshop26 -1,909:-1 - shop qshop27 -1,909:-1 - shop qshop28 -1,909:-1 - shop qshop29 -1,909:-1 //===== rAthena Script ======================================= //= Euphy's Quest Shop //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.6c //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= A dynamic quest shop based on Lunar's, with easier config. //= Includes support for multiple shops & cashpoints. //= Item Preview script by ToastOfDoom. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.2 Added category support. //= 1.3 More options and fixes. //= 1.4 Added debug settings. //= 1.5 Replaced categories with shop IDs. //= 1.6 Added support for purchasing stackables. //= 1.6a Added support for previewing costumes and robes. //= 1.6b Added 'disable_items' command. //= 1.6c Replaced function 'A_An' with "F_InsertArticle". //============================================================ // Shop NPCs -- supplying no argument displays entire menu. // callfunc "qshop"{,<shop ID>{,<shop ID>{,...}}}; // ADD YOUR NPC HERE //============================================================ prontera,73,269,5 script Costume Quest 733,{ callfunc "qshop",10; } prontera,109,197,5 script Elu Ori Shop 582,{ callfunc "qshop",16; } prontera,80,265,3 script Lotto Shop 604,{ callfunc "qshop",17; } //prontera,160,167,3 script Zeny Costumes Prev 581,{ callfunc "qshop",18; } // prontera,165,203,6 script Quest Shop#2 998,{ callfunc "qshop",1,2; } // call the shop 1 and 2 defined below // etc.. Add your Shop NPCs 'Quest Shop#XXX' here //============================================================ // Script Core - DO NOT DUPLICATE THIS NPC !!!!!!!!!!!!! //============================================================ - script quest_shop -1,{ function Add; function Chk; function Slot; OnInit: freeloop(1); // ----------------------------------------------------------- // Basic shop settings. // ----------------------------------------------------------- set .Announce,0; // Announce quest completion? (1: yes / 0: no) set .ShowSlot,1; // Show item slots? (2: all equipment / 1: if slots > 0 / 0: never) set .ShowID,0; // Show item IDs? (1: yes / 0: no) set .ShowZeny,0; // Show Zeny cost, if any? (1: yes / 0: no) set .MaxStack,100; // Max number of quest items purchased at one time. // ----------------------------------------------------------- // Points variable -- optional quest requirement. // setarray .Points$[0],"<variable name>","<display name>"; // ----------------------------------------------------------- setarray .Points$[0], "#CASHPOINTS", "Cash Points"; //===================================================================================== // ------------------- ADD YOUR SHOPS NAME AND ITEMS SHOPS STARTING HERE -------------- //===================================================================================== // ----------------------------------------------------------- // Shop IDs -- to add shops, copy dummy data at bottom of file. // setarray .Shops$[1],"<Shop 1>","<Shop 2>"{,...}; // ----------------------------------------------------------- setarray .Shops$[1], "Upper Headgears"; // Shop Named 1 setarray .Shops$[2], "Memory Costume", // Shop Named 2 "Agitation Costume"; // Shop Named 3 setarray .Shops$[4], "Upper Costumes", "Middle Costumes", "Lower Costumes", "Wings Costumes"; setarray .Shops$[8], "Usable", "Misc"; // Shop Named 3 setarray .Shops$[10], "Costume"; setarray .Shops$[13], "Upper Headgears"; // Shop Named 1 setarray .Shops$[14], "Upper Headgears"; // Shop Named 1 setarray .Shops$[15], "Porcon Shop"; // Shop Named 1 setarray .Shops$[16], "Pelo Shop"; // Shop Named 1 setarray .Shops$[17], "MVP bonus"; // Shop Named 1 setarray .Shops$[18], "Zeny Costume"; // Shop Named 1 // ----------------------------------------------------------- // Quest items -- do NOT use a reward item more than once! // Add(<shop ID>,<reward ID>,<reward amount>, // <Zeny cost>,<point cost>, // <required item ID>,<required item amount>{,...}); // ----------------------------------------------------------- Add(1,24095,1,25000000,0,7539,30,4295,15,6024,3); Add(1,24029,1,25000000,0,7539,30,4114,10,6024,3); Add(1,24081,1,25000000,0,7539,30,4427,1,6024,3); Add(1,24216,1,25000000,0,7539,30,4043,10,6024,3); Add(1,24106,1,25000000,0,7539,30,4223,20,6024,3); Add(1,24027,1,25000000,0,7539,30,4133,15,6024,3); Add(1,2790,1,5000000,0,7539,30,2625,10,6024,3); Add(1,2788,1,5000000,0,7539,30,2622,10,6024,3); Add(1,2789,1,5000000,0,7539,30,2621,10,6024,3); Add(1,5170,1,0,0,7063,100,5172,1,982,1); Add(1,5137,1,5000000,0,7047,100,661,5,5141,2,7539,75); // Add(1,18539,1,5000000,0,5170,3,660,3,7539,45); Add(1,18600,1,5000000,0,5170,2,7063,150,661,1,7539,50); Add(1,5359,1,5000000,0,2285,5,4094,5,2367,3,7539,50); Add(1,5305,1,5000000,0,1214,5,969,5,7799,5,7539,25); Add(1,5374,1,5000000,0,6004,1,2256,1,923,25,7799,30,7798,50,7539,75); Add(1,5805,1,5000000,0,5161,2,7539,75); Add(1,5379,1,5000000,0,5061,2,978,1,2270,2,5083,1,1059,100,7539,30); Add(1,5383,1,0,0,5200,1,979,1,7445,50); Add(1,5324,1,5000000,0,5137,1,7063,20,1034,20,7539,75); // Add(1,2202,1,5000000,0,2291,8,7539,100); Add(1,5409,1,5000000,0,5075,1,7101,5,981,10,7539,25); Add(1,5376,1,5000000,0,2249,1,7101,50,981,10,7539,25); Add(1,5155,1,5000000,0,722,200,958,400,2267,1,7539,125); Add(1,5132,1,5000000,0,5035,1,5074,1,714,1,999,5,7539,50); Add(1,5470,1,5000000,0,2285,3,4094,5,2295,1,7539,50); Add(1,5557,1,0,0,5141,1,7063,50,661,1); Add(1,5153,1,0,0,5141,1,7063,30); sleep 10; Add(1,5174,1,0,0,7445,7,7446,7,7447,7,7448,7,945,300,975,1,733,5,7166,50); Add(1,5147,1,0,0,2227,1,978,1,1057,100); Add(1,5057,1,10000,0,2213,1,983,1,914,200); Add(1,5076,1,0,0,2227,1,7038,500); Add(1,5236,1,0,0,2227,1,7038,500,978,1); Add(1,5235,1,0,0,2227,1,7038,500,982,1,983,1); Add(1,5237,1,0,0,2227,1,7038,500,975,1,982,1); Add(1,5382,1,0,0,969,8,10016,2,5083,1); sleep 10; Add(1,5065,1,0,0,624,1,959,300,544,50,1023,1); Add(1,5052,1,0,0,2211,1,978,1,7003,300); Add(1,2296,1,50000,0,2243,1,999,100); Add(1,5129,1,0,0,604,1,916,1); Add(1,5102,1,0,0,7263,2,2276,1,2239,1,568,150); Add(1,5040,1,0,0,7047,100); Add(1,5109,1,0,0,10015,1,10007,1,5023,1,975,1); Add(1,5016,1,0,0,1030,10); Add(1,5110,1,0,0,526,2,7270,1,941,1,10004,1); Add(1,5191,1,0,0,2208,1,983,1); sleep 10; Add(1,5169,1,0,0,706,1,1019,500,7200,10,1049,20,7165,500,1054,2,1024,100); Add(1,5034,1,0,0,2233,1,746,20); Add(1,2214,1,0,0,949,100,706,1,722,1,2213,1); Add(1,5105,1,0,0,2288,1,1095,3000); Add(1,5175,1,100000,0,7111,100,938,99,983,1); Add(1,5080,1,0,0,10006,1,714,1,969,3); Add(1,5024,1,0,0,529,10,530,5,539,20,999,10,538,15); Add(1,5028,1,0,0,2279,1,7035,50,526,100); Add(1,5200,1,0,0,5016,1,981,1,7317,20); Add(1,5184,1,0,0,5120,5,995,50,983,1,720,50); Add(1,5214,1,0,0,976,1,1060,300,1022,100,5008,5); Add(1,5026,1,0,0,1036,450,949,330,539,120,982,1); sleep 10; Add(1,5142,1,0,0,5017,1,2229,1,5014,1,7209,100,7123,100,1036,100,979,1); Add(1,5283,1,0,0,949,200,916,100,7063,20,925,1); Add(1,5260,1,0,0,4293,1,538,100,530,100,529,50); Add(1,5075,1,0,0,2248,1,7030,108,7194,108,7120,4); Add(1,5048,1,0,0,5041,1,999,10); Add(1,5036,1,0,0,2608,1,7069,500); //Add(1,5135,1,0,0,2295,1,969,1,975,1,999,5); Add(1,5181,1,0,0,7511,100,7340,200,7023,10); Add(1,5108,1,5000,0,7301,1887,5114,1,611,10); Add(1,5254,1,0,0,5132,2,5068,1,2255,1,7023,5,983,1); sleep 10; Add(1,5038,1,0,0,1038,600,7048,40); Add(1,5229,1,0,0,1038,600,7048,40,982,1,983,1); Add(1,5227,1,0,0,1038,600,7048,40,975,1); Add(1,5228,1,0,0,1038,600,7048,40,982,1); Add(1,5186,1,0,0,1032,100,7100,100,905,250); Add(1,5091,1,20000,0,10016,1,714,1,969,3); Add(1,5082,1,0,0,921,300); Add(1,2273,1,3500,0,2275,1,998,50,733,1); Add(1,5258,1,0,0,914,100,975,1,976,1,978,1); Add(1,5198,1,0,0,5058,1,2214,1,949,500,914,200,622,50,1974,1); sleep 10; Add(1,5058,1,0,0,2233,1,983,1,7206,300,7030,1); Add(1,5233,1,0,0,2233,1,983,1,7206,300,7030,1,978,1); Add(1,5231,1,0,0,2233,1,983,1,7206,300,7030,1,982,1,983,1); Add(1,5232,1,0,0,2233,1,983,1,7206,300,7030,1,982,1,975,1); Add(1,5230,1,0,0,2233,1,983,1,7206,300,7030,1,982,1); Add(1,5234,1,0,0,2233,1,983,1,7206,300,7030,1,976,1); Add(1,5253,1,0,0,1034,300,7445,30,5141,10,979,1); Add(1,5252,1,0,0,5058,1,1022,250,7267,100); Add(1,2283,1,0,0,724,1,5001,1,949,200); Add(1,5243,1,0,0,975,1,976,1,914,100,7441,150,7065,25,2283,1); sleep 10; Add(1,5259,1,0,0,978,1,7561,100,949,500,1026,200); Add(1,5205,1,0,0,5185,1,610,100,706,25,7194,113); Add(1,5068,1,20000,0,2255,1,2286,1); Add(1,5304,1,0,0,7017,2,2510,1,983,1); Add(1,5207,1,0,0,2282,5,2254,2,969,1,7063,15); Add(1,5312,1,0,0,2261,1,983,1,2280,1,2627,1,969,2); Add(1,5416,1,0,0,746,20,7097,12,587,20,2717,1); //Add(1,5401,1,0,0,5288,1,983,1); sleep 10; Add(1,5427,1,0,0,5288,1,12078,1,7521,1,12183,1); //Add(1,5800,1,0,0,5040,1,7170,1,2371,1); Add(1,5429,1,0,0,5100,1,1021,30,7268,1); Add(1,5338,1,0,0,5100,1,7112,25,561,1); Add(1,5300,1,0,0,7106,2,2246,1,7263,1,7539,50); Add(1,5378,1,0,0,2214,1,5045,1,975,1,740,100); Add(1,5414,1,1000000,0,7300,9,1068,4,7098,2); Add(1,5307,1,0,0,2275,5,514,2,979,1,634,1,619,20,1027,20); Add(1,5431,1,5000000,0,5283,1,916,50,2717,1); sleep 10; Add(1,5131,1,0,0,5128,1,969,10,978,1,985,27); Add(1,5417,1,0,0,4112,1,5299,1); //Add(1,5373,1,0,0,2255,1,7566,3,7511,60,5104,1,7799,4,7023,20); //Add(1,5369,1,0,0,5191,6,7205,25,558,3,2210,1,7441,5); Add(1,5313,1,0,0,5124,1,2249,1,5007,1,523,200); Add(1,5258,1,0,0,2261,1,914,200,975,1,976,1,978,1); Add(1,5292,1,0,0,7266,2,1035,4,10001,1); //Add(1,5396,1,0,0,5058,1,980,1,1022,53); sleep 10; Add(1,5146,1,0,0,978,1,949,500,1019,1); Add(1,5282,1,0,0,5200,1,982,1,978,2); Add(1,5364,1,0,0,5347,1,975,1,982,1,983,1,5048,1); Add(1,5047,1,0,0,2271,1,975,1); Add(1,5380,1,0,0,5065,2); Add(1,5303,1,0,0,712,100,710,5,629,5,10009,1); Add(1,5302,1,0,0,7553,2,982,1,7771,1); sleep 10; Add(1,5056,1,0,0,5079,1,578,100); //Add(1,5144,1,0,0,2214,1,2221,1,7567,25,1001,200); Add(1,5063,1,0,0,970,1,930,500); Add(1,5193,1,0,0,2208,1,979,1); Add(1,5021,1,0,0,2233,1,969,1,999,20,949,80,938,800); Add(1,5179,1,0,0,2234,1,969,3,2610,4,13106,2); Add(1,5176,1,0,0,706,1,1019,500,7200,10,7015,20,2267,1,952,100,1028,100); Add(1,5001,1,0,0,999,40,984,1,970,1,1003,1); Add(1,5031,1,0,0,7013,1200); sleep 10; Add(1,5025,1,0,0,2229,1,2254,1,7036,5); Add(1,5061,1,20000,0,2269,1,999,10); Add(1,5139,1,0,0,5085,1,710,5,7510,1,975,1); Add(1,5070,1,0,0,7216,300,7097,300,2211,1,982,1); Add(1,5071,1,10000,0,5010,1,5049,1,7101,10); Add(1,5173,1,0,0,7445,7,7446,7,7447,7,7478,7,945,300,983,1,733,5,2221,1); Add(1,5405,1,0,0,7441,45,949,80,916,100); sleep 10; Add(1,5410,1,50000000,0,7188,40,7111,20); Add(1,5448,1,0,0,521,200,1019,300); Add(1,5449,1,0,0,521,200,1019,300); Add(1,5421,1,10000000,0,2286,1,7122,60); Add(1,5424,1,0,0,980,1,620,1,605,50,985,200); Add(1,5425,1,0,0,981,1,533,1,605,50,985,200); Add(1,5276,1,0,0,2261,1,914,200,983,1,976,1,975,1); //Add(1,5156,1,0,0,2265,10,982,1); //Add(1,5154,1,0,0,2202,1,7020,5); //Add(1,5155,1,0,0,7024,10,7754,2,7562,4,7450,1); Add(1,5018,1,500,0,2247,1,916,300); Add(1,5403,1,0,0,1023,1,544,5,579,1); sleep 10; Add(1,5317,1,0,0,5120,1,2290,1,938,4); Add(1,5334,1,0,0,5132,1,1971,20,7093,4,2659,1); //Add(1,5376,1,0,0,641,1,2210,1,7063,60,983,4); Add(1,5400,1,0,0,1022,20,1234,2); Add(1,5339,1,0,0,5100,1,7112,25,1558,1); //Add(1,5361,1,0,0,7216,200); //Add(1,5377,1,10000000,0,2268,1,1040,30,1629,1); Add(1,5346,1,0,0,5100,1,7112,25,558,1); sleep 10; //Add(1,5262,1,0,0,5164,1,7799,1,7578,1,969,3); Add(1,5336,1,0,0,5100,1,7112,25,714,1); Add(1,5273,1,0,0,2261,1,914,200,982,1,975,1,979,1); Add(1,5319,1,0,0,5035,1,5074,1,978,1); //Add(1,5363,1,0,0,5120,1,2261,1,983,20); //Add(1,5314,1,0,0,7567,200,5102,1); Add(1,5360,1,0,0,5057,1,2747,2,5161,1); Add(1,5209,1,0,0,5147,1,976,1); sleep 10; //Add(1,5396,1,0,0,5430,1,5285,1,7262,20,5396,1); Add(1,5371,1,0,0,5016,1,1004,35); Add(1,5426,1,0,0,5027,1,976,5); Add(1,5291,1,0,0,7323,100,969,20); Add(1,5311,1,0,0,5139,5); Add(1,5418,1,0,0,5016,1,2261,1,968,1,975,5,1004,35); Add(1,5422,1,500000,0,1550,3,1006,20); sleep 10; Add(1,5332,1,0,0,7019,10,7200,10); Add(1,5392,1,100000,0,721,5,7216,25); Add(1,5365,1,0,0,574,150,7031,150); Add(1,5143,1,0,0,5090,1,1020,300,975,1,982,1); Add(1,5020,1,0,0,2215,1,2210,1,7063,20); Add(1,5140,1,0,0,5085,1,2244,1,5191,1,7166,50); sleep 10; Add(1,5069,1,0,0,1022,99); Add(1,5185,1,0,0,5061,1,712,100,7194,150,7298,100,520,50,521,50); Add(1,5130,1,0,0,1048,100,7564,150,517,30); Add(1,5177,1,0,0,706,1,1019,500,7200,10,1049,500,1053,2,980,1); //Add(1,5013,1,50000000,0,754,100,753,100,752,100,751,100,750,100,743,100,742,100,741,100,2613,100,5053,100,7020,100,7036,100,2268,100,734,100,923,100,968,100,7005,100,714,300); Add(1,5084,1,0,0,1026,1000,7065,100,945,100,7030,1); //Add(1,5027,1,0,0,2252,1,1036,400,7001,50,4052,1); //Add(1,5241,1,0,0,2252,1,1036,400,7001,50,4052,1,978,1); //Add(1,5240,1,0,0,2252,1,1036,400,7001,50,4052,1,982,1,983,1); //Add(1,5238,1,0,0,2252,1,1036,400,7001,50,4052,1,975,1); sleep 10; //Add(1,5239,1,0,0,2252,1,1036,400,7001,50,4052,1,982,1); //Add(1,5242,1,0,0,2252,1,1036,400,7001,50,4052,1,976,1); Add(1,5054,1,0,0,2252,1,1054,450,943,1200); Add(1,5187,1,0,0,5085,1,5091,1,5117,2,978,1,975,1); Add(1,5138,1,0,0,5123,1,5027,1,7337,50,981,1); Add(1,5099,1,0,0,7267,300,7171,300,1029,5); Add(1,5031,1,0,0,5009,1,5028,1,747,1,999,25); Add(1,5081,1,40000,0,2249,1,714,1,969,3); Add(1,5073,1,0,0,2285,1,1550,1); Add(1,5117,1,50000,0,731,10,748,2,982,1); sleep 10; Add(1,5183,1,0,0,604,100,916,100,7115,100); //Add(1,5151,1,0,0,5001,1,978,1,991,200); Add(1,2281,1,5000,0,998,20,707,1); Add(1,5043,1,0,0,2281,1,1048,50); Add(1,5094,1,0,0,968,100,2299,1,1124,1,931,1000); Add(1,5196,1,0,0,2208,1,980,1); Add(1,5078,1,0,0,5033,1,5064,1); Add(1,5004,1,0,0,701,5); //Add(1,5389,1,0,0,5043,5,969,10,7568,50); sleep 10; Add(1,5420,1,3000000,0,5430,2,5421,1); //Add(1,5323,1,0,0,5081,3,7754,1,2128,1); //Add(1,5315,1,0,0,2276,1,5135,1,7094,50,7353,50); Add(1,5375,1,0,0,5094,1,10018,2,968,5,7440,30); Add(1,5370,1,0,0,5302,1,981,5); Add(1,5060,1,0,0,2236,1,7151,100,7111,100); Add(1,5299,1,0,0,7441,20,949,50,916,15,7115,10,7440,20,7063,10,7200,10,2214,1); Add(1,5023,1,0,0,1059,150,907,100,978,1); sleep 10; Add(1,5271,1,0,0,2254,1,723,1,7301,20,999,50,978,1); Add(1,5352,1,0,0,5035,1,979,1,938,100); Add(1,2293,1,0,0,1049,4); Add(1,5194,1,0,0,2208,1,975,1,982,1); Add(1,5202,1,0,0,5035,1,1062,100,535,80); Add(1,5182,1,0,0,5008,10,5118,1,1060,100,2210,1); Add(1,5213,1,0,0,2214,1,983,1,7063,30); Add(1,5033,1,0,0,1036,20,2213,1,7065,300,7012,200); Add(1,5039,1,0,0,7030,50,978,1,5015,1); sleep 10; //Add(1,5288,1,0,0,5047,1,2276,1); Add(1,5195,1,0,0,2208,1,975,1); Add(1,5211,1,0,0,5045,1,5083,1,7063,40,7510,1,982,1,975,1); Add(1,5208,1,0,0,1550,1,1553,7,1556,7,1554,7,1557,7,1555,7,7015,30); Add(1,5083,1,0,0,2244,1,2209,1,10007,1); Add(1,2280,1,10000,0,1019,120); Add(1,5100,1,0,0,2272,1,7451,4,7433,3,690,10); Add(1,5067,1,0,0,5062,1,952,50,1907,1); Add(1,5133,1,0,0,5160,1,7106,6,7107,80); Add(1,5149,1,0,0,2234,1,714,5,2611,25); sleep 10; Add(1,5064,1,0,0,945,600,7030,1); Add(1,2278,1,0,0,705,10,909,10,914,10); Add(1,5203,1,0,0,2278,1,1015,1,999,5); //Add(1,5212,1,0,0,1820,2,5011,1,2651,1,4125,1); Add(1,5257,1,0,0,5074,1,2282,1,7064,10,969,5); Add(1,5029,1,0,0,7068,300,7033,850,1015,1); Add(1,2272,1,911000,0,1019,50,983,1); Add(1,5062,1,0,0,2280,1,7197,300,7150,300); Add(1,5049,1,0,0,1099,1500); Add(1,5287,1,0,0,5062,1,5348,1,978,1); sleep 10; Add(1,5032,1,0,0,1059,250,2221,1,2227,1,7063,600); Add(1,5103,1,0,0,5351,1,10011,1); Add(1,5022,1,0,0,7086,1,969,10,999,40,1003,50,984,2); //Add(1,5395,1,0,0,5045,2,7205,150,983,1,1059,100); Add(1,5059,1,0,0,5030,1,7213,100,7217,100,7161,300); Add(1,5107,1,0,0,519,50,7031,50,548,50,539,50); Add(1,5077,1,0,0,2278,1,975,1); Add(1,5337,1,0,0,5100,1,7112,25,2617,1); Add(1,5358,1,0,0,2286,1,7101,30); sleep 10; Add(1,5152,1,0,0,2254,1,724,1,7301,20,999,50,978,1); Add(1,5413,1,0,0,608,20,1752,1,2261,1,978,1); Add(1,5318,1,0,0,5035,2,5060,2,741,10,530,50,938,100); Add(1,5074,1,20000,0,2286,1,2254,1); //Add(1,5051,1,0,0,7047,100); //Add(1,5293,1,0,0,577,20,7134,1,581,3,7454,2,7455,2,6033,2,6022,2); //Add(1,5801,1,0,0,5083,1,2700,12,7566,12,7562,12,2357,3); //Add(1,5325,1,0,0,5102,1,7355,12,7095,4,7317,2); sleep 10; //Add(1,5320,1,0,0,5205,1,1009,50,2111,1); Add(1,5354,1,0,0,5431,1,12080,1,1629,1); Add(1,5811,1,0,0,985,100,2241,10); Add(1,5381,1,0,0,5335,1,2236,1); Add(1,5397,1,2000000,0,7325,5,2205,1,7355,1,7539,15); Add(1,5355,1,0,0,7166,100,1059,200); Add(1,5243,1,0,0,7446,1,2339,10,1059,70); //Add(1,5310,1,0,0,5034,1,1971,2,996,6); //Add(1,5274,1,0,0,2261,1,914,200,980,2,975,1); //Add(1,5261,1,0,0,5164,1,714,25,2611,50,7799,4); sleep 10; Add(1,5388,1,0,0,1048,50,926,50); //Add(1,5342,1,0,0,5137,1,5040,1,1020,20,7152,5); Add(1,5297,1,0,0,5257,1,1472,2,5158,2,7063,40); Add(1,5335,1,2000000,0,741,5,607,5,940,150,7539,10); //Add(1,5343,1,0,0,5137,1,2215,1,1034,25); //Add(1,5098,1,0,0,1029,10,2297,5,7267,50); Add(1,5430,1,4000000,0,5414,1,7135,10,7451,4); // Shop 2 Add(2,31405,1,0,0,7179,1); Add(2,20344,1,0,0,7179,1); Add(2,31413,1,0,0,7179,1); // Shop 3 Add(3,31410,1,0,0,7179,1); Add(3,31406,1,0,0,7179,1); Add(4,40573,1,0,0,7179,1); Add(4,40510,1,0,0,7179,1); Add(4,20130,1,0,0,7179,1); Add(4,20450,1,0,0,7179,1); Add(4,31125,1,0,0,7179,1); Add(4,20316,1,0,0,7179,1); Add(4,20284,1,0,0,7179,1); Add(4,19753,1,0,0,7179,1); Add(4,19816,1,0,0,7179,1); Add(4,19883,1,0,0,7179,1); Add(4,19656,1,0,0,7179,1); Add(4,19667,1,0,0,7179,1); Add(4,20380,1,0,0,7179,1); Add(4,31465,1,0,0,7179,1); Add(4,19677,1,0,0,7179,1); Add(4,19537,1,0,0,7179,1); Add(4,20079,1,0,0,7179,1); Add(4,19676,1,0,0,7179,1); Add(4,19544,1,0,0,7179,1); Add(4,31392,1,0,0,7179,1); Add(4,20099,1,0,0,7179,1); Add(4,20324,1,0,0,7179,1); Add(4,20338,1,0,0,7179,1); Add(4,20242,1,0,0,7179,1); Add(4,19745,1,0,0,7179,1); Add(4,20075,1,0,0,7179,1); Add(4,20377,1,0,0,7179,1); Add(4,20381,1,0,0,7179,1); Add(4,31464,1,0,0,7179,1); Add(4,31466,1,0,0,7179,1); Add(4,31467,1,0,0,7179,1); Add(4,19668,1,0,0,7179,1); Add(4,20384,1,0,0,7179,1); Add(4,20053,1,0,0,7179,1); Add(4,19976,1,0,0,7179,1); Add(4,19824,1,0,0,7179,1); Add(4,20191,1,0,0,7179,1); Add(4,20499,1,0,0,7179,1); Add(4,20101,1,0,0,7179,1); Add(4,20076,1,0,0,7179,1); Add(4,19762,1,0,0,7179,1); Add(4,19991,1,0,0,7179,1); Add(4,20433,1,0,0,7179,1); Add(4,20455,1,0,0,7179,1); Add(4,19579,1,0,0,7179,1); Add(4,19598,1,0,0,7179,1); Add(4,19991,1,0,0,7179,1); Add(4,20374,1,0,0,7179,1); Add(4,20372,1,0,0,7179,1); Add(4,19762,1,0,0,7179,1); Add(4,31827,1,0,0,7179,1); Add(4,31834,1,0,0,7179,1); Add(4,31833,1,0,0,7179,1); Add(5,20448,1,0,0,7179,1); Add(5,20349,1,0,0,7179,1); Add(5,31479,1,0,0,7179,1); Add(5,40146,1,0,0,7179,1); Add(5,40140,1,0,0,7179,1); Add(5,20430,1,0,0,7179,1); Add(5,31568,1,0,0,7179,1); Add(5,31395,1,0,0,7179,1); Add(5,31454,1,0,0,7179,1); Add(5,19776,1,0,0,7179,1); Add(5,20010,1,0,0,7179,1); Add(5,20404,1,0,0,7179,1); Add(5,20335,1,0,0,7179,1); Add(5,19291,1,0,0,7179,1); Add(5,31600,1,0,0,7179,1); Add(6,20798,1,0,0,7179,1); Add(6,20407,1,0,0,7179,1); Add(6,20132,1,0,0,7179,1); Add(6,31438,1,0,0,7179,1); Add(6,31719,1,0,0,7179,1); Add(6,31470,1,0,0,7179,1); Add(6,20405,1,0,0,7179,1); Add(6,31545,1,0,0,7179,1); Add(6,31625,1,0,0,7179,1); Add(6,31611,1,0,0,7179,1); Add(6,31533,1,0,0,7179,1); Add(6,31300,1,0,0,7179,1); Add(6,31055,1,0,0,7179,1); Add(6,31492,1,0,0,7179,1); Add(6,20462,1,0,0,7179,1); Add(6,31189,1,0,0,7179,1); Add(6,31330,1,0,0,7179,1); Add(6,20798,1,0,0,7179,1); Add(6,20407,1,0,0,7179,1); Add(6,20132,1,0,0,7179,1); Add(6,31438,1,0,0,7179,1); Add(7,20765,1,0,0,7179,1); Add(7,20761,1,0,0,7179,1); Add(7,20525,1,0,0,7179,1); Add(7,50864,1,0,0,7179,1); Add(7,50861,1,0,0,7179,1); Add(7,50840,1,0,0,7179,1); Add(7,50843,1,0,0,7179,1); Add(7,50857,1,0,0,7179,1); Add(7,50837,1,0,0,7179,1); Add(7,50846,1,0,0,7179,1); Add(7,20571,1,0,0,7179,1); Add(7,20764,1,0,0,7179,1); Add(7,20514,1,0,0,7179,1); Add(7,20579,1,0,0,7179,1); Add(7,20509,1,0,0,7179,1); Add(7,20516,1,0,0,7179,1); Add(7,50855,1,0,0,7179,1); Add(7,50914,1,0,0,7179,1); Add(7,50851,1,0,0,7179,1); Add(7,50832,1,0,0,7179,1); Add(7,50968,1,0,0,7179,1); Add(8,50984,1,10000000,0,6153,75); Add(8,12549,1,0,0,6153,15); Add(8,13810,1,0,0,6153,15); Add(8,14542,1,300000,0,6153,30); Add(8,12029,1,500000,0,6153,1); Add(8,12033,1,1500000,0,6153,1); Add(8,12210,1,800000,0,7539,15); Add(8,14542,1,500000,0,6153,30); Add(8,14544,1,500000,0,6153,30); Add(8,14545,1,300000,0,6153,30); Add(8,12247,1,600000,0,6153,30); Add(8,12202,1,750000,0,6153,25); Add(8,12203,1,750000,0,6153,25); Add(8,12204,1,750000,0,6153,25); Add(8,12205,1,750000,0,6153,25); Add(8,12206,1,750000,0,6153,25); Add(8,12207,1,750000,0,6153,25); Add(9,7619,1,5000000,0,6153,150,7539,25); Add(9,7620,1,5000000,0,6153,150,7539,25); Add(9,7281,1,2000000,0,6153,10); Add(10,40580,1,100000000,0,5171,1,969,100); Add(10,20109,1,5000000,0,5163,1,7281,1); Add(10,40511,1,25000000,0,5160,1,7281,1); Add(10,19625,1,5000000,0,2214,1,7281,1); Add(10,19738,1,5000000,0,5108,1,7281,1); Add(10,19617,1,5000000,0,5118,1,7281,1); Add(10,20091,1,5000000,0,2268,1,7281,1); Add(10,19885,1,5000000,0,2295,1,7281,1); Add(10,19781,1,5000000,0,5074,1,7281,1); Add(10,19529,1,5000000,0,2254,1,7281,1); Add(10,19621,1,5000000,0,5068,1,7281,1); Add(10,19731,1,5000000,0,2255,1,7281,1); Add(10,19549,1,5000000,0,2256,1,7281,1); Add(10,19551,1,5000000,0,2286,1,7281,1); Add(10,19629,1,5000000,0,2234,1,7281,1); Add(10,19630,1,5000000,0,2235,1,7281,1); Add(10,19501,1,5000000,0,5053,1,7281,1); Add(10,19505,1,5000000,0,2267,1,7281,1); Add(10,19525,1,5000000,0,2271,1,7281,1); Add(10,19527,1,5000000,0,2258,1,7281,1); Add(10,19541,1,5000000,0,2269,1,7281,1); Add(10,19545,1,5000000,0,5016,1,7281,1); Add(10,19546,1,5000000,0,5171,1,7281,1); Add(10,19719,1,5000000,0,2249,1,7281,1); Add(10,19720,1,5000000,0,2247,1,7281,1); Add(10,19737,1,5000000,0,5019,1,7281,1); Add(10,19832,1,5000000,0,5035,1,7281,1); Add(13,50984,1,0,0,7420,600); Add(13,50985,1,0,0,7420,600); Add(13,7420,1,0,0,7420,1); Add(13,13973,1,0,0,7420,150); Add(13,13989,1,0,0,7420,40); Add(13,50880,1,0,0,7420,200); Add(14,20517,1,0,0,50895,4000); Add(14,20762,1,0,0,50895,4000); Add(14,20746,1,0,0,50895,4000); // Add(14,20737,1,0,0,50895,5000); // Add(14,50854,1,0,0,50895,2000); Add(14,31798,1,0,0,50895,2500); Add(14,21202,1,0,0,50895,1500); Add(14,31455,1,0,0,50895,1500); Add(14,31315,1,0,0,50895,2000); Add(14,12412,1,0,0,50895,400); Add(15,13989,1,0,0,7539,2); Add(15,13973,1,0,0,7539,6); Add(15,50881,1,0,0,7539,75); Add(16,984,1,0,0,756,5); Add(16,985,1,0,0,757,5); Add(16,7620,1,0,0,984,750); Add(16,7619,1,0,0,985,750); Add(17,50782,1,0,0,7179,1); Add(17,50791,1,0,0,7179,1); Add(17,20035,1,0,0,7179,1); Add(17,20069,1,0,0,7179,1); Add(17,40027,1,0,0,7179,1); Add(17,20086,1,0,0,7179,1); Add(18,19424,1,0,0,7179,1); Add(18,21206,1,0,0,7179,1); Add(18,31062,1,0,0,7179,1); Add(18,20584,1,0,0,7179,1); Add(18,20570,1,0,0,7179,1); Add(18,50867,1,0,0,7179,1); // ----------------------------------------------------------- //===================================================================================== // ------------------- YOUR SHOPS AND ITEMS SHOPS HAVE BEEN ADDED --------------------- //===================================================================================== freeloop(0); set .menu$,""; for(set .@i,1; .@i<=getarraysize(.Shops$); set .@i,.@i+1) { set .menu$, .menu$+.Shops$[.@i]+":"; npcshopdelitem "qshop"+.@i,909; } end; OnMenu: set .@size, getarraysize(@i); if (!.@size) set @shop_index, select(.menu$); else if (.@size == 1) set @shop_index, @i[0]; else { for(set .@j,0; .@j<.@size; set .@j,.@j+1) set .@menu$, .@menu$+.Shops$[@i[.@j]]+":"; set @shop_index, @i[select(.@menu$)-1]; } deletearray @i[0],getarraysize(@i); if (.Shops$[@shop_index] == "") { message strcharinfo(0),"An error has occurred."; end; } dispbottom "Select one item at a time."; callshop "qshop"+@shop_index,1; npcshopattach "qshop"+@shop_index; end; OnBuyItem: // .@q[] : RewardID, BoughtAmt, RewardAmt, BaseAmt, ReqZeny, ReqPts, { ReqItem, ReqAmt, ... } setarray .@q[0],@bought_nameid[0],((@bought_quantity[0] > .MaxStack)?.MaxStack:@bought_quantity[0]); copyarray .@q[3],getd(".q_"+@shop_index+"_"+.@q[0]+"[0]"),getarraysize(getd(".q_"+@shop_index+"_"+.@q[0])); set .@q[2],.@q[1]*.@q[3]; if (!.@q[2] || .@q[2] > 30000) { message strcharinfo(0),"You can't purchase that many "+getitemname(.@q[0])+"."; end; } mes "[Quest Shop]"; mes "Reward: ^0055FF"+((.@q[2] > 1)?.@q[2]+"x ":"")+Slot(.@q[0])+"^000000"; mes "Requirements:"; disable_items; if (.@q[4]) mes " > "+Chk(Zeny,.@q[4]*.@q[1])+(.@q[4]*.@q[1])+" Zeny^000000"; if (.@q[5]) mes " > "+Chk(getd(.Points$[0]),.@q[5]*.@q[1])+(.@q[5]*.@q[1])+" "+.Points$[1]+" ("+getd(.Points$[0])+"/"+(.@q[5]*.@q[1])+")^000000"; if (.@q[6]) for(set .@i,6; .@i<getarraysize(.@q); set .@i,.@i+2) mes " > "+Chk(countitem(.@q[.@i]),.@q[.@i+1]*.@q[1])+((.ShowID)?"{"+.@q[.@i]+"} ":"")+Slot(.@q[.@i])+" ("+countitem(.@q[.@i])+"/"+(.@q[.@i+1]*.@q[1])+")^000000"; next; setarray @qe[1], getiteminfo(.@q[0],5), getiteminfo(.@q[0],11); if (@qe[2] > 0 && ((@qe[1] & EQP_HEAD_LOW) || (@qe[1] & EQP_HEAD_TOP) || (@qe[1] & EQP_HEAD_MID) || (@qe[1] & EQP_COSTUME_HEAD_TOP) || (@qe[1] & EQP_COSTUME_HEAD_MID) || (@qe[1] & EQP_COSTUME_HEAD_LOW) || (@qe[1] & EQP_GARMENT) || (@qe[1] & EQP_COSTUME_GARMENT))) set .@preview,1; addtimer 1000, strnpcinfo(0)+"::OnEnd"; while(1) { switch(select(" ~ Purchase ^0055FF"+getitemname(.@q[0])+"^000000:"+((.@preview && !@qe[7])?" ~ Preview...":"")+": ~ ^777777Cancel^000000")) { case 1: if (@qe[0]) { mes "[Quest Shop]"; mes "You're missing one or more quest requirements."; close; } if (!checkweight(.@q[0],.@q[2])) { mes "[Quest Shop]"; mes "^FF0000You need "+(((.@q[2]*getiteminfo(.@q[0],6))+Weight-MaxWeight)/10)+" additional weight capacity to complete this trade.^000000"; close; } if (.@q[4]) set Zeny, Zeny-(.@q[4]*.@q[1]); if (.@q[5]) setd .Points$[0], getd(.Points$[0])-(.@q[5]*.@q[1]); if (.@q[6]) for(set .@i,6; .@i<getarraysize(.@q); set .@i,.@i+2) delitem .@q[.@i],.@q[.@i+1]*.@q[1]; getitem .@q[0],.@q[2]; if (.Announce) announce strcharinfo(0)+" has created "+((.@q[2] > 1)?.@q[2]+"x "+getitemname(.@q[0]):callfunc("F_InsertArticle",getitemname(.@q[0])))+"!",0; specialeffect2 EF_FLOWERLEAF; close; case 2: setarray @qe[3], getlook(LOOK_HEAD_BOTTOM), getlook(LOOK_HEAD_TOP), getlook(LOOK_HEAD_MID), getlook(LOOK_ROBE), 1; if ((@qe[1] & 1) || (@qe[1] & 4096)) changelook LOOK_HEAD_BOTTOM, @qe[2]; else if ((@qe[1] & 256) || (@qe[1] & 1024)) changelook LOOK_HEAD_TOP, @qe[2]; else if ((@qe[1] & 512) || (@qe[1] & 2048)) changelook LOOK_HEAD_MID, @qe[2]; else if ((@qe[1] & 4) || (@qe[1] & 8192)) changelook LOOK_ROBE, @qe[2]; break; case 3: close; } } OnEnd: if (@qe[7]) { changelook LOOK_HEAD_BOTTOM, @qe[3]; changelook LOOK_HEAD_TOP, @qe[4]; changelook LOOK_HEAD_MID, @qe[5]; changelook LOOK_ROBE, @qe[6]; } deletearray @qe[0],8; end; function Add { if (getitemname(getarg(1)) == "null") { debugmes "Quest reward #"+getarg(1)+" invalid (skipped)."; return; } setarray .@j[0],getarg(2),getarg(3),getarg(4); for(set .@i,5; .@i<getargcount(); set .@i,.@i+2) { if (getitemname(getarg(.@i)) == "null") { debugmes "Quest requirement #"+getarg(.@i)+" invalid (skipped)."; return; } else setarray .@j[.@i-2],getarg(.@i),getarg(.@i+1); } copyarray getd(".q_"+getarg(0)+"_"+getarg(1)+"[0]"),.@j[0],getarraysize(.@j); npcshopadditem "qshop"+getarg(0),getarg(1),((.ShowZeny)?getarg(3):0); return; } function Chk { if (getarg(0) < getarg(1)) { set @qe[0],1; return "^FF0000"; } else return "^00FF00"; } function Slot { set .@s$,getitemname(getarg(0)); switch(.ShowSlot) { case 1: if (!getitemslots(getarg(0))) return .@s$; case 2: if (getiteminfo(getarg(0),2) == 4 || getiteminfo(getarg(0),2) == 5) return .@s$+" ["+getitemslots(getarg(0))+"]"; default: return .@s$; } } } function script qshop { deletearray @i[0],getarraysize(@i); for(set .@i,0; .@i<getargcount(); set .@i,.@i+1) set @i[.@i],getarg(.@i); doevent "quest_shop::OnMenu"; end; }