Eucharist96 Posted December 9, 2011 Posted December 9, 2011 can someone teach me how to make or help me to make Dynamic Npc For Donations?? =)) thank you Quote
Emistry Posted December 9, 2011 Posted December 9, 2011 if you want to learn scripting... Read these... Basic_Scripting Script_Command Scripting for Dummies If you are request for a script...( Since you are posting in Script Request Section ) then you must explain / give details on what script you are going to request with Quote
Eucharist96 Posted December 9, 2011 Author Posted December 9, 2011 hmm i want like tcg traders but i want it for Pods =)) Quote
Emistry Posted December 9, 2011 Posted December 9, 2011 anyway,..next time you can try browse the Request Section ...xD coz most of the time....the script like these could have made by other members as well in previous topic / posts.. ^^ for example prontera,138,183,5 script TCG Uppers 793,{ mes .name$; mes "You currently have "+countitem(.tcg_item)+" TCG."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) {close;} close2; callshop "TCG_SHOP",1; npcshopattach "TCG_SHOP"; dispbottom "You currently have "+countitem(.tcg_item)+" TCG."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.TCG_ITEMS); set @j,@j+1) { if(.TCG_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.ITEMPRICE[@j]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.tcg_item)) { dispbottom "You don't have enough TCG."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .tcg_item,@totalcost; dispbottom "Thank you for shopping."; dispbottom "You now have "+countitem(.tcg_item)+" TCG left."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "TCG_SHOP",909; // Leave this alone set .name$,"[TCG Uppers]"; set .tcg_item,7227; // Input TCG ID setarray .TCG_ITEMS[0],20001; // Item IDs - 128 max setarray .ITEMPRICE[0],30; // Item prices - Should followe ID's order for(set .@i,0; .@i < getarraysize(.TCG_ITEMS); set .@i,.@i+1) { npcshopadditem "TCG_SHOP",.TCG_ITEMS[.@i],.ITEMPRICE[.@i]; } end; } - shop TCG_SHOP -1,909:20 Change Item Required here : set .tcg_item,7227; // Input TCG ID Set your Items / Price here : setarray .TCG_ITEMS[0],20001; // Item IDs - 128 max setarray .ITEMPRICE[0],30; // Item prices - Should followe ID's order if you want to Duplicate the NPC for other items. change all this TCG_SHOP to other Quote
Eucharist96 Posted December 9, 2011 Author Posted December 9, 2011 Sry My bad im new at scripting i don't know how to add items on it to trade Quote
Emistry Posted December 9, 2011 Posted December 9, 2011 wan to add a list of item just simple like this ~ For Example : setarray .TCG_ITEMS[0],607,608,609,610,611,612; setarray .ITEMPRICE[0], 30, 10, 12, 13,100,500; Quote
Question
Eucharist96
can someone teach me how to make
or help me to make Dynamic Npc For Donations?? =)) thank you
5 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.