You can also use your credit card without a paypal account.
Adding shops and shop services (by Kamakani)
Adding Shops and Shop Services
Here you will learn how to add Shops and Shop Services to NPC?s and Locations.
Go to the Shops folder and create a new shop. Name this shop whatever you want (name it by double clicking on the name in the folder's view), but take note of the shop's ID. Ex: 700100. At the bottom in the type of items and weapons to buy, check all of the boxes. This will allow all items to be bought and sold in this shop. Now click on the Add button and add one of each item into the shop contents box. You can add as many items as you want into a shop.
Now go to the NPC's folder and add an NPC and name it whatever you like. This will be your Shopkeeper. Click on the script tab and using the drop down menu at the bottom select JScript, this will let the engine know that the script is being run in the JScript format. Now, cut and paste the following script into the script of the NPC:
function op1(){
BeginShop("Test Shop",10,12,700100);
OpenShop();
}
function OnDialog(){
Echo("Shop Keeper: Hello, can I interest you in some armor, weapons or healing potions today?");
ClearOptions();
AddOption(0,"Yes","op1();","");
AddOption(0,"No Thanks","","");
ProcessOptions();
}
Throndiron June 23 2007 00:04:24
AN overall good article about shops and it should help anyone with starting up their game. Shops are another must have for any LT game.
MrHelem 17/08/2008 15:22 Nevermind, got it figured out.
MrHelem 17/08/2008 04:13 Hey, can anyone tell me how to set up a custom skill so it uses mana? I scanned the tutorials and didn't find anything.
Throndir 10/08/2008 13:33 Or check out legendarytales.wikispaces .com
Throndir 10/08/2008 13:09 Yes. Post in the forums with your problem.
critchell 09/08/2008 17:46 i need some help with a particular script which adds a new member to a party, can anyone help?
Throndir 05/08/2008 14:24 Legendarytales is a game engine and editor. You basically create textbased games, or hope for any other person to create an adventure so you could play it..
Delphinus 05/08/2008 10:17 You create.
Check the 'Downloads' page.