noobzter003 Posted March 28, 2016 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 109 Reputation: 5 Joined: 03/17/16 Last Seen: September 24, 2022 Share Posted March 28, 2016 ThanksQ Quote Link to comment Share on other sites More sharing options...
Elysium Posted April 6, 2016 Group: Members Topic Count: 41 Topics Per Day: 0.01 Content Count: 164 Reputation: 17 Joined: 03/15/12 Last Seen: October 24, 2020 Share Posted April 6, 2016 Multi Currency Shop 6.0 Category: Utilities Last Updated Aug 31 2012 05:33 PM @Emistry, i have a question will you help me how to put some itemize receipt. After purchasing - 1 x Adventure's Suite - 2 x Proof of Donation Something like that. Quote Link to comment Share on other sites More sharing options...
Cinquedea Posted April 27, 2016 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 31 Reputation: 0 Joined: 02/05/14 Last Seen: August 3, 2017 Share Posted April 27, 2016 Does this really requires the buyer to have zeny which amount is similar to the cost of the item even if the currency used is Proof of Donation? It does not really take the buyer's zeny but the npc requires the buyers to have zeny before purchasing. Thanks for this though... Quote Link to comment Share on other sites More sharing options...
xilence01 Posted July 10, 2016 Group: Members Topic Count: 54 Topics Per Day: 0.01 Content Count: 177 Reputation: 4 Joined: 05/23/12 Last Seen: April 16, 2019 Share Posted July 10, 2016 Your Refiner cant upgrade shields. Kindly fix it. Quote Link to comment Share on other sites More sharing options...
jeywich Posted July 12, 2016 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 4 Reputation: 0 Joined: 06/18/16 Last Seen: November 24, 2019 Share Posted July 12, 2016 Thanks you for your Scripts Emistry. Quote Link to comment Share on other sites More sharing options...
renoblack Posted July 19, 2016 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 14 Reputation: 1 Joined: 01/26/16 Last Seen: 6 hours ago Share Posted July 19, 2016 Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted September 29, 2016 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 83 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted September 29, 2016 (edited) Your Refiner cant upgrade shields. Kindly fix it. Maybe you didnt follow this... //--- Bitmasks ---- // 1 - Top Headgear // 2 - Armor // 4 - Left Hand // 8 - Right Hand // 16 - Garment // 32 - Shoes // 64 - Left Accessory // 128 - Right Accessory // 256 - Middle Headgear // 512 - Lower Headgear // 1024 - Costume : Head Low // 2048 - Costume : Head Mid // 4096 - Costume : Head Top Also @Emistry can you add new arguments on Refine Function like Zeny requirments and Amount for arg10 and may i ask if theres a way to disable the nude func when refining items. PS: I think theres a problem on Refine Func Bitmasks becuase i tryed 1023 = Top Headgear ~ Right Accessory and 192 = Left Accessory and Right Accessory but the problem is it doesnt read the Right Accessory. See the image below... Edited September 29, 2016 by Lelouch vi Britannia Quote Link to comment Share on other sites More sharing options...
tract Posted October 22, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 10/05/16 Last Seen: February 1, 2017 Share Posted October 22, 2016 [ Update ] : Added a Class Restriction Script : Description : This Script allow certain Maps to Block / Restrict certain Job Class. Configurations can be varies across the Maps settings. If the Class that are Blocked entering the Map, the Characters will be warped out from the Map within few seconds after they enter the Map. This Script will be able to answer / solve those below problems. Where can i find a Trans Class / 3rd Class WOE ?? How to Block Certain Jobs from entering some Maps ? Configuration : Bitwise Table and Usage : // -------- BitMasks -------- // 1 - Normal jobs, // 2 - Adv jobs. // 4 - Baby jobs, // 8 - Normal 3rd jobs. // 16 - Adv. 3rd jobs. // 32 - Baby 3rd jobs. // 64 - Certain Jobs ( Specific ) // ----- Mode Example : ( Blocked Class ) ------ // 63 - All Class that has been defined // 64 - Only the Specific Job you defined // 7 - Normal + Advanced + Baby Jobs // 56 - Normal 3rd + Advanced 3rd + Baby 3rd Jobs Notes : Just add in the Value for the Bitmask. Aware of the Usage of Certain Jobs. --- If you using Bitmask Above , aware of the Limit Reach. ( ~128 Total Class ) --- If your Bitmask = ( 63 + 64 ) , Your "Certain Jobs" have only about 20 Slots. --- Anyway, i dont think you will do so since Bitmask 63 will block most of the Class already. * Common Sense : Make sure the Array ".@Restrict" didnt exceed limit of 128 element. You may edit these below parts... but by default, i have list down most of the Job Class accordingly... // Normal Jobs if( getarg(0) & 1 ) setarray .@Restrict[getarraysize(.@Restrict)],0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,23,24,25,4046,4047,4049; // Adv Jobs if( getarg(0) & 2 ) setarray .@Restrict[getarraysize(.@Restrict)],4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,4020,4021; // Baby Jobs if( getarg(0) & 4 ) setarray .@Restrict[getarraysize(.@Restrict)],4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4037,4038,4039,4040,4041,4042,4043,4045; // Normal 3rd Jobs if( getarg(0) & 8 ) setarray .@Restrict[getarraysize(.@Restrict)],4054,5055,4056,4057,4058,4059,4066,4067,4068,4069,4070,4071,4072; // Adv 3rd Jobs if( getarg(0) & 16 ) setarray .@Restrict[getarraysize(.@Restrict)],4060,4061,4062,4063,4064,4065,4073,4074,4075,4076,4077,4078,4079; // Baby 3rd Jobs if( getarg(0) & 32 ) setarray .@Restrict[getarraysize(.@Restrict)],4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108; However,.....this is a special case ....... // Certain Jobs ( Specific Your Own Class Restriction ) if( getarg(0) & 64 ) setarray .@Restrict[getarraysize(.@Restrict)],4046,4002,4004,4013,4011; It would be better to Not using Bitwise 64 if your script already block all of the job class above ( Bitwise : 63 )This is because, the limit might be exceed if you add too much Job Class in the Array for Bitwise ( 64 + 63 ) Anyway, i think it is still Okay to use Bitwise ( 64 + some of the other Bitwise ) ...but not All Bitwise combined. Settings : I guess you should be able to understand this part right ? so, i will skip this parts. // Wait X Seconds before warped out. set .Sec,5; // Lowest GM Level to Bypass set .LowGMLvl,80; Here come the Maps Settings Parts. setarray .Map$, // <Mapname>,<Mode>.... ( Mode = Bitwise Value ) Max of ~64 Map Settings. "prtg_cas01","63", "prtg_cas02","64", "prtg_cas03","3", "prtg_cas04","2", "prtg_cas05","1"; You should be able to realize that....the setting are done in this Format.. <MapName>, <Mode>, ......... <MapName>, <Mode>; the Mode refer to the Bitwise Value ( Blocked Class for the Map ) and the Mode are write within Quotation Mark ( " " ) as a string.refer to above Bitwise Table for how to configure the Bitwise Value for Restrict those Job Class. You may add up to ~64 Maps. Example : "prtg_cas01","63", // --------> Restrict "All" the Job Class ( Except "Certain Jobs" ) "prtg_cas02","64", // --------> Restrict "Certain Jobs" ( Specified by Yourself ) "prtg_cas03","3", // --------> Restrict "Normal & Advanced Job" Class "prtg_cas04","2", // --------> Restrict "Advance" Jobs "prtg_cas05","1"; // --------> Restrict "Normal" Jobs Class Restriction [ Version 2 ] Changelog : [ Version 1 ] - A Simple Blocking Certain Job to Enter a Map. [ Version 2 ] - Enable Multiple Different Configuration across the Maps. Scripts : View ♥ Download Please spend your time to read all the things i have write / mentioned in the post before you asking any questions. if got bug / problems please do report to me. Were can i put this script? Sorry sir im just a beginner Quote Link to comment Share on other sites More sharing options...
topechi Posted December 3, 2016 Group: Members Topic Count: 24 Topics Per Day: 0.01 Content Count: 52 Reputation: 2 Joined: 11/13/16 Last Seen: April 13, 2020 Share Posted December 3, 2016 On 12/3/2011 at 4:36 PM, Emistry said: [ Update ] : Added a Farm Zone Script : Description : A map which allow users to hunt items inside it. But it have some restriction as well ... Time Limit Users Limit Item Hunting Limit etc.. Check out the "Function" part for items configuration. and there is 2 Type of Item Lists ( You can set how many to get randomly ) Normal Monster Drops List Boss Monster Drops List Farm Zone [ Version 2 ] Changelog : Hide contents [ Version 1 ] - A Place where Players can hunt alot items [ Version 2 ] - Added Several Settings. ( Ex. Time In / Out Limit , Max Users , Item Hunt Limit and etc. ) Scripts : View ♥ Download How to add monsters sir? Quote Link to comment Share on other sites More sharing options...
adamrivai Posted January 25, 2017 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 8 Reputation: 0 Joined: 01/11/17 Last Seen: March 8, 2017 Share Posted January 25, 2017 Emistry ,Can u make a pack file? for easy download... Quote Link to comment Share on other sites More sharing options...
Amidamaru Posted August 15, 2017 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 21 Reputation: 2 Joined: 07/12/17 Last Seen: March 30, 2020 Share Posted August 15, 2017 Hello @Emistry i want to ask, may i use your keyboard warrior event script for my server? thank you for your reply Quote Link to comment Share on other sites More sharing options...
iubantot Posted March 15, 2018 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: Sunday at 08:33 PM Share Posted March 15, 2018 someone managed to do this on my live server! and he got like 29k pcs of bloody branch and all other stuffs pls fix im using the version 6 Quote Link to comment Share on other sites More sharing options...
WorldSeed Posted August 11, 2018 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 56 Reputation: 0 Joined: 02/19/16 Last Seen: February 26, 2020 Share Posted August 11, 2018 On 3/15/2018 at 7:36 AM, iubantot said: someone managed to do this on my live server! and he got like 29k pcs of bloody branch and all other stuffs pls fix im using the version 6 instead of using a npc why not use the cash shop system or make it Quest type npc? + donation npc shouldn't be in town have them inside a warp with no skills allowed, unless the problem is npc timeout? but i could be wrong you can probably wait for @Emistry to solve the issue. Quote Link to comment Share on other sites More sharing options...
Haruka Mayumi Posted June 3, 2020 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 477 Reputation: 269 Joined: 06/13/17 Last Seen: 21 hours ago Share Posted June 3, 2020 Cleaned and Optimize for cleaner look ~ ^_~ 1 Quote Link to comment Share on other sites More sharing options...
AinsLord Posted June 19, 2021 Group: Members Topic Count: 257 Topics Per Day: 0.08 Content Count: 737 Reputation: 18 Joined: 11/21/15 Last Seen: July 20 Share Posted June 19, 2021 hi miss @Emistry it seems i do have problem with your refine item/useable thanks for helping Quote Link to comment Share on other sites More sharing options...
Mr SumBaXs Gamin Posted August 26, 2022 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 2 Reputation: 0 Joined: 03/07/20 Last Seen: September 16, 2022 Share Posted August 26, 2022 guys i hve this error when i load stage game.. can someone help me fix it.. thx alot.. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.