deso Posted June 12, 2013 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 80 Reputation: 0 Joined: 04/22/12 Last Seen: August 21, 2013 Share Posted June 12, 2013 (edited) Can edit this script and make in menu trade staff for Dead Branch and Bloody Branch. 1 gold coin = 50 dead branch and 5 gold coin = 10 Bloody Branch. db.txt Edited June 12, 2013 by deso Quote Link to comment Share on other sites More sharing options...
Jaburak Posted June 12, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted June 12, 2013 prontera,164,167,2 script DB Trader 912,{ mes "[ Sarah ]"; mes "Hello, traveller!"; mes "How may I help you today?"; menu "My Gold Coin to Dead Branch!",Ldb, "My Gold Coin to Bloody Branch!",Lbb, "Nothing",L_Not; Ldb: mes "[ Sarah ]"; mes "I will replace your 1 Gold Coin into 10 Bloody Branch!"; next; if(countitem(671) < 1) goto L_CantMake; delitem 671,1; mes "Oh! Thank you..."; next; mes "Here you go!!!"; getitem 604,50; close; Lbb: mes "[ Sarah ]"; mes "I will replace your 1 Gold Coin into 50 Dead Branch!"; next; if(countitem(671) < 1) goto L_CantMake; delitem 671,1; mes "Oh! Thank you..."; next; mes "Here you go!!!"; getitem 12103,10; close; L_Not: mes "[ Sarah ]"; mes "You do not have enough Gold Coin to complete this action."; close; } 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.