summaryrefslogtreecommitdiff
path: root/npc/custom/eAAC_Scripts/banker.txt
blob: 93dcf5e66c1d57616fdbb15c6bfb816ca09bde40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
//| ~~~~~~~~~~~ Information ~~~~~~~~~~~~~
//| | This is a simple banking npc,     |
//| | instead of using those global     |
//| | variables :P                      |
//| |                                   |
//| | It's fully customizable, you      |
//| | can exchange the coin ID used     |
//| | at will, it won't affect the      |
//| | script whatsoever =3              |
//| |                                   |
//| | The prices can also be set, the   |
//| | way you like the most, as they    |
//| | won't affect the script either    |
//| |                                   |
//| | No db/client files modification   |
//| | needed, just "Plug&Play" ;P       |
//| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//|
//| Revision:
//| v.1.0: Released script. No problems or bugs found, at least :P
//|        It's your duty to find them now if there are.
//|        @minvalue must contain the coin price of the lowest coin value
//|        in order for the script to work correctly. By default it's set
//|        to the bronze coin
//|
//| Revision:
//| v.2.0: Added a Mix option in the Zeny to Coin function,
//|        where it allows you to split your desired Zeny into
//|        the coins you wish to obtain, without having to go 
//|        through the other functions to obtain them all. That way
//|     you can get them all at once ;3
//|
//|     It also displays the total zeny being exchanged,
//|     the total coins obtained and the difference between
//|     the amount of zeny you've inputted and the sum of
//|      the coin's values.
//|
//| Revision:
//| v.2.5: Replaced all the coin names with a variable that has
//|   getitemname(<coin_id), for more customization of the script.
//|   
//|   Fixed aswell a 0 at the mixing function, it had an unexistant 
//|   variable plus it was rendering a message to 0. Pretty bad =/
//|   
//|   The implementation of the getitemname was because some people
//|   complaining that those items seemed to be wrong, that the name
//|   in the db was Platinum while the script had Silver, so well,
//|   there you have it. No more silver coins, thanks to you :)

//| Revision:
//| v.2.6: Added another Weight check to prevent coins from dropping
//|        to the ground because A) Too many coins (more than 30,000 ea)
//|        B) Your current weight + total coins weight were greater than
//|        your max weight, causing them to drop due to "over-weight".
//|        Thanks to Niktout for spotting it.

//| Revision:
//| v.2.7: Added a check to the Zeny -> Coin Mix label. It seems you
//|        can trade with negative zeny (meh...). This should prevent it.
//|        Thanks to Niktout.

//| Revision:
//| v.2.8: Added a n00b check for the Zeny -> Coin function. Should
//|        prevent zeny overflow. Also added a variable cleaning section
//|        at the beginning of the Mix function, to prevent old values
//|        to be used as a payout.

//| Revision:
//| v.2.8.1 Removed the 'conflicting' switch with variables as case options,
//|         and moved the color names to the function, so now it executes once.
//|         Did other optimizations and cleanups all around the code. Meh.

//| Upcomming possible updates:
//| v.3.0: Adding a refining system, so you can gather ore and the likes
//|        to make your own coins. They will have a failure chance
//|        of course. You will need, for now: 10 ores of the type of 
//|        coin you wish, a mini furnace, an anvil depending on what
//|        You're crafting, and a hammer according to it.

//| Copyright � 2006-2007 erKURITA. All Rights Reserved

prontera,155,188,3	script	Zacariath Madhat	872,{

//|~~~~~~~~~~~~~ Settings of the NPC: ~~~~~~~~~~~~~~~~~
	set @npcname$,"^999999[Zach]^000000";		//|
	set @bronzeprice,10000;						//|
	set @silverprice,100000;					//|
	set @goldprice,1000000;						//|
	set @mithrilprice,10000000;					//|
	set @bronzecoinid,673;						//|
	set @silvercoinid,677;						//|
	set @goldcoinid,671;						//|
	set @mithrilcoinid,674;						//|
	set @minvalue,@bronzeprice;					//|
	set @name1$,getitemname(@bronzecoinid);		//|
	set @name2$,getitemname(@silvercoinid);		//|
	set @name3$,getitemname(@goldcoinid);		//|
	set @name4$,getitemname(@mithrilcoinid);	//|
	set @MAX_ZENY,1000000000;					//|
//|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	mes @npcname$;
	mes "Hi "+strcharinfo(0)+", I'm this town's banker";
	mes "I can allow you to exchange your zeny into useful and handy coins, which you can use to make trades between players, or just save them";
	next;
	mes @npcname$;
	mes "^996600"+@name1$+"s^000000 are worth "+@bronzeprice+"z, ^999999"+@name2$+"s^000000 are worth "+@silverprice+"z, ^FFCC00"+@name3$+"s^000000 "+@goldprice+"z, ^CCCCCC"+@name4$+"s^000000 are worth "+@mithrilprice+"z";
	next;
	goto L_Menu;

	L_Menu:
	mes @npcname$;
	mes "What do you want to do then?";
	menu "Exchange my coins into zeny",-,"Exchange my zeny into coins",L_ZenyCoin,"Nothing for now, sorry",L_End;

//| Here starts the Coin to Zeny Exchange
	L_CoinZeny:
		next;
		mes @npcname$;
		mes "First than anything, what kind of coins are you going to exchange?";
		menu @name1$+"s",L_Bronze,@name2$+"s",L_Silver,@name3$+"s",L_Gold,@name4$+"s",L_Mithril,"None for now",L_Menu;
		L_Bronze:
			callsub L_Coincheckout,@bronzecoinid,@bronzeprice,"^996600";
			goto L_CoinZeny;
		L_Silver:
			callsub L_Coincheckout,@silvercoinid,@silverprice,"^999999";
			goto L_CoinZeny;
		L_Gold:
			callsub L_Coincheckout,@goldcoinid,@goldprice,"^FFCC00";
			goto L_CoinZeny;
		L_Mithril:
			callsub L_Coincheckout,@mithrilcoinid,@mithrilprice,"^CCCCCC";
			goto L_CoinZeny;
	L_Coincheckout:
		set @coinname$,getarg(2)+getitemname(getarg(0))+"^000000";
		next;
		mes @npcname$;
		mes "Let's see, how many coins do you want to exchange?";
		next;
	L_Inputing:
		input @coinamount;
		if (@coinamount <= 0) {
			mes @npcname$;
			mes "You didn't input any amount, please retry";
			next;
			goto L_Inputing;
		} else if (countitem(getarg(0)) < @coinamount) {
			mes @npcname$;
			mes "You don't have enough coins, please get some";
			next;
			goto L_Menu;
		} else if (@coinamount*getarg(1) > @MAX_ZENY) {
			mes @npcname$;
			mes "I'm sorry, the quantity you inputted gives a bigger zeny amount than the max allowed. I can't allow this.";
			next;
			goto L_Menu;
		}
		next;
		mes @npcname$;
		mes "So, you want to exchange "+@coinamount+" "+@coinname$+" ?";
		menu "Yes, I want to exchange this much",-,"No, I want to exchange something else",L_CoinZeny,"No, I want to input another number",L_Inputing,"No, I dont want to exchange anything",L_Menu;
		next;
		set @price,getarg(1)*@coinamount;
		delitem getarg(0),@coinamount;
		set Zeny,Zeny+@price;
		mes @npcname$;
		mes "There we go, here's your money";
		next;
		return;

//| Here starts the Zeny to Coin exchange.

	L_ZenyCoin:
		next;
		if (MaxWeight*50/100 < Weight) {
			if (MaxWeight*90/100 < Weight) {
				mes @npcname$;
				mes "Sorry but you have more than 90% weight. Your coins might drop. I can't give you anything.";
				next;
				goto L_Menu;
			}
			mes @npcname$;
			mes "You have 50% or more weight, do you still want to continue?";
			menu "Yes",L_ContinueZenyCoin,"No, thanks",L_Menu;
		}
	L_ContinueZenyCoin:
		mes @npcname$;
		mes "First, how much zeny do you want to exchange";
		callsub L_Inputingzeny;
		set @bronzezeny,@zenyamount/@bronzeprice;
		set @silverzeny,@zenyamount/@silverprice;
		set @goldzeny,@zenyamount/@goldprice;
		set @mithrilzeny,@zenyamount/@mithrilprice;
		next;
		mes @npcname$;
		mes "You can have, with "+@zenyamount+":";
		mes "^996600"+@bronzezeny+"^000000 "+@name1$+"s";
		mes "^999999"+@silverzeny+"^000000 "+@name2$+"s";
		mes "^FFCC00"+@goldzeny+"^000000 "+@name3$+"s";
		mes "or";
		mes "^CCCCCC"+@mithrilzeny+"^000000 "+@name4$+"s";
		next;
		if (@zenyamount < @minvalue) goto L_Moremoney;
		goto L_ZenyCoin2;

		L_ZenyCoin2:
			mes @npcname$;
			mes "Which coins do you want? Or do you want a mix of them?";
			menu "I want the "+@name1$+"s",-,"I want the "+@name2$+"s",L_Silvers,"I want the "+@name3$+"s",L_Golds,"I want the "+@name4$+"s",L_Mithrils,"I want a mix of them",L_Mix,"Nothing for now, sorry",L_Menu;
			if (@bronzezeny == 0) goto L_Moremoney;
			callsub L_Zenycheckout,@bronzecoinid,@bronzeprice,@bronzezeny;
			goto L_Menu;

			L_Silvers:
				if (@silverzeny == 0) goto L_Moremoney;
				callsub L_Zenycheckout,@silvercoinid,@silverprice,@silverzeny;
				goto L_Menu;

			L_Golds:
				if (@goldzeny == 0) goto L_Moremoney;
				callsub L_Zenycheckout,@goldcoinid,@goldprice,@goldzeny;
				goto L_Menu;

			L_Mithrils:
				if (@mithrilzeny == 0) goto L_Moremoney;
				callsub L_Zenycheckout,@mithrilcoinid,@mithrilprice,@mithrilzeny;
				goto L_Menu;

	L_Zenycheckout:
		next;
		if (((getiteminfo(getarg(0),6))*getarg(2)) > (MaxWeight-Weight)) {
			mes @npcname$;
			mes "Sorry, your max weight does not allow me to give you this much of zeny coins";
			mes "Either choose another type of coins or a lower quantity, thanks";
			close;
		} 
		if (getarg(2) > 30000) {
			mes @npcname$;
			mes "Sorry, I can't give you more than 30,000 ea";
			mes "Pick another coin type";
			close;
		}
		set @itemid,getarg(0);
		set @pricea,getarg(1)*getarg(2);
		set Zeny,Zeny-@pricea;
		getitem @itemid,getarg(2);
		mes @npcname$;
		mes "There you go, here's your coins";
		next;
		return;
	L_Inputingzeny:
		input @zenyamount;
		if (Zeny == 0) {
			mes @npcname$;
			mes "You don't have any Zeny left. I can't do anything. Get some Zeny first";
			next;
			goto L_Menu;
		} else if (@zenyamount <= 0) {
			mes @npcname$;
			mes "You didn't input any amount, please retry";
			next;
			goto L_Inputingzeny;
		} else if (@zenyamount > Zeny) {
			mes @npcname$;
			mes "The inputted zeny amount is bigger than your actual zeny amount";
			mes "Please re-entry another amount";
			next;
			goto L_Inputingzeny;
		} else return;

//| Mix function
	L_Mix:
		set @totalzeny,0;
		set @totalcoins,0;
		set @bronzecoins,0;
		set @silvercoins,0;
		set @goldcoins,0;
		set @mithrilcoins,0;
		next;
		mes @npcname$;
		mes "Ok, let's start with ^996600"+@name1$+"s^000000";
		next;
		mes @npcname$;
		mes "How many coins do you want?";
		input @bronzecoins;
		next;
		set @totalzeny,@bronzecoins*@bronzeprice;
		set @totalcoins,@bronzecoins;
		mes "Zeny Amount Inputted:   ^000066"+@zenyamount+"^000000";
		mes "Coins:";
		mes "   ^996600"+@name1$+"s^000000:   "+@bronzecoins+"       ^CC0000"+@bronzecoins*@bronzeprice+"^000000";
		mes "�����������������������������������";
		if (@totalzeny > @zenyamount || @totalzeny < 0) {
			mes "TOTAL Zeny:   "+@totalcoins+"   - ^CC0000"+@totalzeny+"^000000";
			mes "Zeny Left:  "+(@zenyamount-@totalzeny);
			goto L_Overzeny;
		}
		mes "TOTAL Zeny:   "+@totalcoins+"     ^00CC00"+@totalzeny+"^000000";
		mes "Zeny Left:  "+(@zenyamount-@totalzeny);
		next;
		if (@totalzeny > @zenyamount || @totalzeny < 0) goto L_Overzeny;
		mes @npcname$;
		mes "Is this enough or do you want more?";
		menu "It's enough, thanks",L_Payoff,"No, I want some more",-;
		next;
		mes @npcname$;
		mes "Now ^999999"+@name2$+"s^000000. How many coins do you want?";
		next;
		input @silvercoins;
		next;
		set @totalzeny,@totalzeny+@silvercoins*@silverprice;
		set @totalcoins,@totalcoins+@silvercoins;
		mes "Zeny Amount Inputted:   ^000066"+@zenyamount+"^000000";
		mes "Coins:";
		mes "   ^996600"+@name1$+"s^000000:   "+@bronzecoins+"       ^CC0000"+@bronzecoins*@bronzeprice+"^000000";
		mes "   ^999999"+@name2$+"s^000000:   "+@silvercoins+"      ^CC0000"+@silvercoins*@silverprice+"^000000";
		mes "�����������������������������������";
		if (@totalzeny > @zenyamount || @totalzeny < 0) {
			mes "TOTAL Zeny:  "+@totalcoins+"   - ^CC0000"+@totalzeny+"^000000";
			mes "Zeny Left:  "+(@zenyamount-@totalzeny);
			goto L_Overzeny;
		}
		mes "TOTAL Zeny:   "+@totalcoins+"     ^00CC00"+@totalzeny+"^000000";
		mes "Zeny Left:  "+(@zenyamount-@totalzeny);
		next;
		if (@totalzeny > @zenyamount || @totalzeny < 0) goto L_Overzeny;
		mes @npcname$;
		mes "Is this enough or do you want more?";
		menu "It's enough, thanks",L_Payoff,"No, I want some more",-;
		next;
		mes @npcname$;
		mes "Now ^FFCC00"+@name3$+"s^000000. How many coins do you want?";
		input @goldcoins;
		next;
		set @totalzeny,@totalzeny+@goldcoins*@goldprice;
		set @totalcoins,@totalcoins+@goldcoins;
		mes "Zeny Amount Inputted:      ^000066"+@zenyamount+"^000000";
		mes "Coins:";
		mes "   ^996600"+@name1$+"s^000000:   "+@bronzecoins+"       ^CC0000"+@bronzecoins*@bronzeprice+"^000000";
		mes "   ^999999"+@name2$+"s^000000:   "+@silvercoins+"      ^CC0000"+@silvercoins*@silverprice+"^000000";
		mes "   ^FFCC00"+@name3$+"s^000000:   "+@goldcoins+"         ^CC0000"+@goldcoins*@goldprice+"^000000";
		mes "�����������������������������������";
		if (@totalzeny > @zenyamount || @totalzeny < 0) {
			mes "TOTAL Zeny:   "+@totalcoins+"   - ^CC0000"+@totalzeny+"^000000";
			mes "Zeny Left:  "+(@zenyamount-@totalzeny);
			goto L_Overzeny;
		}
		mes "TOTAL Zeny:   "+@totalcoins+"     ^00CC00"+@totalzeny+"^000000";
		mes "Zeny Left:  "+(@zenyamount-@totalzeny);
		next;
		if (@totalzeny > @zenyamount || @totalzeny < 0) goto L_Overzeny;
		mes @npcname$;
		mes "Is this enough or do you want more?";
		menu "It's enough, thanks",L_Payoff,"No, I want some more",-;
		next;
		mes @npcname$;
		mes "Now ^CCCCCC"+@name4$+"s^000000. How many coins do you want?";
		input @mithrilcoins;
		next;
		set @totalzeny,@totalzeny+@mithrilcoins*@mithrilprice;
		set @totalcoins,@totalcoins+@mithrilcoins;
		mes "Zeny Amount Inputted:      ^000066"+@zenyamount+"^000000";
		mes "Coins:";
		mes "   ^996600"+@name1$+"s^000000:   "+@bronzecoins+"       ^CC0000"+@bronzecoins*@bronzeprice+"^000000";
		mes "   ^999999"+@name2$+"s^000000:   "+@silvercoins+"      ^CC0000"+@silvercoins*@silverprice+"^000000";
		mes "   ^FFCC00"+@name3$+"s^000000:   "+@goldcoins+"         ^CC0000"+@goldcoins*@goldprice+"^000000";
		mes "   ^CCCCCC"+@name4$+"s^000000:   "+@mithrilcoins+"    ^CC0000"+@mithrilcoins*@mithrilprice+"^000000";
		mes "�����������������������������������";
		if (@totalzeny > @zenyamount || @totalzeny < 0) {
			mes "TOTAL Zeny:   "+@totalcoins+"   - ^CC0000"+@totalzeny+"^000000";
			mes "Zeny Left:  "+(@zenyamount-@totalzeny);
			goto L_Overzeny;
		}
		mes "TOTAL:   "+@totalcoins+"     ^00CC00"+@totalzeny+"^000000";
		mes "Zeny Left:  "+(@zenyamount-@totalzeny);
		next;
		if (@totalzeny > @zenyamount || @totalzeny < 0) goto L_Overzeny;
		mes @npcname$;
		mes "Is this ok?: "+@bronzecoins+" "+@name1$+"s, "+@silvercoins+" "+@name2$+"s, "+@goldcoins+" "+@name3$+"s, "+@mithrilcoins+" "+@name4$+"s, for a total amount of "+@totalzeny;
		menu "Yes, it's ok",-,"No, I want to re-intro them",L_Mix,"Sorry, I dont want anything",L_Menu;

	L_Payoff:
		next;
		if (@zenyamount > Zeny) goto L_Overzeny;
		set Zeny,Zeny-@totalzeny;
		getitem @bronzecoinid,@bronzecoins;
		getitem @silvercoinid,@silvercoins;
		getitem @goldcoinid,@goldcoins;
		getitem @mithrilcoinid,@mithrilcoins;
		mes @npcname$;
		mes "There you go, here's your coins";
		next;
		set @bronzecoins,0;
		set @silvercoins,0;
		set @goldcoins,0;
		set @mithrilcoins,0;
		goto L_End;

	L_Overzeny:
		next;
		mes @npcname$;
		mes "Sorry, I can't do anything else. Either the sum of all the coins you inputted is bigger than the zeny amount inputted, or the inputted amout of zeny is bigger that your total Zeny. Please retry.";
		next;
		goto L_Menu;

//| Other labels

	L_Moremoney:
		mes @npcname$;
		mes "You need to get more zeny, I can't give you anything with "+@zenyamount+"z, sorry";
		next;
		goto L_Menu;

	L_End:
		next;
		mes @npcname$;
		mes "Good to see you and hope to see you again. Bye";
		close;
		
	OnInit:
		setitemscript 671,"{}";
		end;
}