x13th Posted November 25, 2011 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Share Posted November 25, 2011 (edited) anyone can give me this kind of npc ? :3 Edited November 25, 2011 by x13th Quote Link to comment Share on other sites More sharing options...
0 Orc Lord Posted November 25, 2011 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 56 Reputation: 8 Joined: 11/10/11 Last Seen: September 3, 2013 Share Posted November 25, 2011 oh that's cool i wish i could add one also on my server Quote Link to comment Share on other sites More sharing options...
0 GodLesZ Posted November 25, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 25, 2011 Isnt this a simple [wiki]cashshop[/wiki]? Quote Link to comment Share on other sites More sharing options...
0 x13th Posted November 25, 2011 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Author Share Posted November 25, 2011 Isnt this a simple [wiki]cashshop[/wiki]? well, can you teach me how? Quote Link to comment Share on other sites More sharing options...
0 GodLesZ Posted November 25, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 25, 2011 Just pasted from doc/script_commands.txt: ** Define a shop/cashshop NPC. -%TAB%shop%TAB%<NPC Name>%TAB%<sprite id>,<itemid>:<price>{,<itemid>:<price>...} <map name>,<x>,<y>,<facing>%TAB%shop%TAB%<NPC Name>%TAB%<sprite id>,<itemid>:<price>{,<itemid>:<price>...} This will define a shop NPC, which, when triggered (which can only be done by clicking) will cause a shop window to come up. No code whatsoever runs in shop NPCs and you can't change the prices otherwise than by editing the script itself. (No variables even exist at this point of scripting, so don't even bother trying to use them.) The item id is the number of item in the 'item_db.txt' database. If Price is set to -1, the 'buy price' given in the item database will be used. Otherwise, the price you gave will be used for this item, which is how you create differing prices for items in different shops. Since trunk r12264 you can alternatively use "cashshop" in place of "shop" to use the Cash Shop interface, allowing you to buy items with special points (Currently stored as account vars in global_reg #CASHPOINTS and #KAFRAPOINTS.) This type of shop will not allow you to sell items at it, you may only purchase items here. The layout used to define sale items still count, and "<price>" refers to how many points will be spent purchasing the them. Quote Link to comment Share on other sites More sharing options...
0 x13th Posted November 25, 2011 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Author Share Posted November 25, 2011 i guess its not a simple cash shop. its a dynamic shop. using a coin to buy items. ? Quote Link to comment Share on other sites More sharing options...
0 jTynne Posted November 25, 2011 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 399 Reputation: 199 Joined: 11/09/11 Last Seen: December 14, 2020 Share Posted November 25, 2011 I think Ind already released this over on RR. Link: http://ro-resources....stom-cashshops/ File Name: Custom CashShops File Submitter: Ind File Submitted: 02 Mar 2011 File Updated: 02 Mar 2011 File Category: Server Resources Content Author: Ind Whats this About It is a super bundle that supports 3 types of currencies in cash shops: ItemsYou can specify any item id you want to be the currency of any instanced cash shop, you can have multiple cash shops with different items as their currencie[*]Char Regs You can specify any char reg you want to be the currency of any instanced cash shop, you can have multiple char reg cash shops with different variables as their currencies[*]Account Regs You can specify any account reg you want to be the currency of any instanced cash shop, you can have multiple account reg cash shops with different variables as their currencies Allowing you to setup a high variety of pointing systems with rewards in your server. Whats Included A .patch file which will add the support for the 3 new currencies types, which you can apply with your svn client, if you don't know how to you can check our guide on how to apply patches: http://ro-resources....a-diff-for-win/, and a demonstration file with a example of each of the 3 currency types. How to use Upon calling a cashshop, on any n.p.c. you'll need to determine it's initial currency values otherwise it'll rely on the default one, for example, as shown in the demo, a item-currencied cash shop is called on the following way: set #KAFRAPOINTS,0;//Always 0, we use cashpoints. set #CASHPOINTS,countitem(909);//Currency Amount set @RRITMCur,909;//The Currency for this shop: Item ID close2; callshop "ITMCurMyShop",1; end; KafraPoints is erased because we don't rely on it, it should always be erased to not allow players to make use of it. You should then set the cashpoints which will be the countitem for the currency (e.g. lets say you have a item ID'd 29000 and it is called "valor badge", each valor badge in inventory would equal to 1P src-wise) In the exemple above jellopy is the currency (#909). the variable @RRITMCur (temp char reg - can't rename) holds the ID of the currency, so it can doublecheck the info upon purchase procedure. A character reg-currencied cash shop is called in the following way: set #KAFRAPOINTS,0;//Always 0, we use cashpoints. set #CASHPOINTS,MyCharCurrencyVal;//Currency Amount set @CharCurrrency$,"MyCharCurrencyVal";//The Currency for this shop: Char Reg Name close2; callshop "CharCurMyShop",1; end; Same logic as above, just that here we first point #cashpoints with the VALUE of the variable and @CharCurrency$ holds the actual NAME of the variable, so it can be doublechecked later in the src code on the purchase procedure. A account reg-currencied cash shop is called in the following way: set #KAFRAPOINTS,0;//Always 0, we use cashpoints. set #CASHPOINTS,#MYAccCurrencyVal;//Currency Amount set @AccCurrrency$,"#MYAccCurrencyVal";//The Currency for this shop: Account Reg Name close2; callshop "ACCCurMyShop",1; end; Same logic as above, just that we're pointing to a account variable. Aside from setting the currency settings, you need to make the shop's currency identifiable src-wise, it is simple, the shop name you're calling MUSTCONTAIN one of the following identifiers ACCCur for account-reg shops, CharCur for char-reg shops and ITMCur for item-reg shops. It just needs to CONTAIN, means it doesn't need to start or end, can be: "MyNpcITMCurSuperShop" for example (of a item currencied shop) Get Support Assistance? No Problem! Post your issue in the following link: http://ro-resources....stom-cashshops/ Quote Link to comment Share on other sites More sharing options...
0 Soulworld Posted December 14, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 24 Reputation: 0 Joined: 12/07/12 Last Seen: April 10, 2013 Share Posted December 14, 2012 Someone got this script still? XD the link is dead :S Quote Link to comment Share on other sites More sharing options...
0 x13th Posted December 20, 2012 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 206 Reputation: 14 Joined: 11/20/11 Last Seen: April 9, 2024 Author Share Posted December 20, 2012 Its a cash shop. You need to hex your client in order to change the 'C' or whatsoever ♥ Quote Link to comment Share on other sites More sharing options...
Question
x13th
anyone can give me this kind of npc ? :3
Edited by x13thLink to comment
Share on other sites
8 answers to this question
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.