-
Notifications
You must be signed in to change notification settings - Fork 19
/
sphere_newb.scp
590 lines (478 loc) · 11.2 KB
/
sphere_newb.scp
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
//****************************************************************************
// SPHERE by : Menasoft ©1997-2018
// www.sphereserver.net
// All SPHERE script files and formats are copyright Menasoft & Partners.
// This file may be freely edited for personal use, but may not be distributed
// in whole or in part, in any format without express written permission from
// Menasoft & Partners. All donations and contributions
// become the property of Menasoft & Partners.
//****************************************************************************
// FILE LAST UPDATED: Tuesday, Aug 28, 2018
//
VERSION=0.56d
[COMMENT sphere_newb]
Newbie templates are item templates used to create all the
starting stuff on the account based on which profession/skills
the player choose on character creation menu.
Default MALE_DEFAULT / FEMALE_DEFAULT templates are always used
no matter what the player choose. Useful to set default starting
items common to all templates.
Each profession/skill template can have optional
variants to human, elf and gargoyle races. Example:
[NEWBIE Alchemy]
[NEWBIE Alchemy Elf]
[NEWBIE Alchemy Garg]
If the player choose an race which has no template set, the
default human template will be used by default.
///////////////////////
// Generic templates //
///////////////////////
[NEWBIE MALE_DEFAULT]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_dagger
ITEM=i_shirt_plain
ITEM=i_pants_short
ITEM=i_shoes_plain
[NEWBIE MALE_DEFAULT ELF]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_dagger
ITEM=i_shirt_plain
ITEM=i_pants_short
ITEM=i_shoes_plain
[NEWBIE MALE_DEFAULT GARG]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_gargish_dagger
ITEM=i_gargish_robe
[NEWBIE FEMALE_DEFAULT]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_dagger
ITEM=i_shirt_plain
ITEM=i_skirt_long
ITEM=i_shoes_plain
[NEWBIE FEMALE_DEFAULT ELF]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_dagger
ITEM=i_shirt_plain
ITEM=i_skirt_long
ITEM=i_shoes_plain
[NEWBIE FEMALE_DEFAULT GARG]
ITEM=i_gold,1000
ITEM=i_book_sm
ITEM=i_candle
ITEM=i_gargish_dagger
ITEM=i_gargish_robe
//////////////////////////
// Profession templates //
//////////////////////////
[NEWBIE PROFESSION_WARRIOR]
ITEM=i_leather_tunic
[NEWBIE PROFESSION_WARRIOR ELF]
ITEM=i_leaf_chest
[NEWBIE PROFESSION_WARRIOR GARG]
ITEM=i_gargish_leather_chest
[NEWBIE PROFESSION_NECROMANCER]
ITEM=i_spellbook_necromancy
MORE1=08981
ITEM=i_bone_helmet
ITEM=i_bone_harvester
ITEM=i_leather_tunic
COLOR=02c3
ITEM=i_leather_sleeves
COLOR=02c3
ITEM=i_leather_gloves
COLOR=02c3
ITEM=i_leather_gorget
COLOR=02c3
ITEM=i_leather_leggings
COLOR=02c3
ITEM=i_skirt_long
COLOR=02c3
ITEM=i_sandals
COLOR=08fd
[NEWBIE PROFESSION_NECROMANCER ELF]
ITEM=i_spellbook_necromancy
MORE1=08981
ITEM=i_bone_helmet
ITEM=i_elven_machete
ITEM=i_leaf_chest
COLOR=02c3
ITEM=i_leaf_arms
COLOR=02c3
ITEM=i_leaf_gloves
COLOR=02c3
ITEM=i_leaf_gorget
COLOR=02c3
ITEM=i_leaf_leggings
COLOR=02c3
ITEM=i_elven_pants
COLOR=02c3
ITEM=i_elven_boots
[NEWBIE PROFESSION_NECROMANCER GARG]
ITEM=i_spellbook_necromancy
MORE1=08981
ITEM=i_sword_glass
ITEM=i_gargish_leather_chest
COLOR=02c3
ITEM=i_gargish_leather_arms
COLOR=02c3
ITEM=i_gargish_leather_leggings
COLOR=02c3
ITEM=i_gargish_leather_kilt
COLOR=02c3
[NEWBIE PROFESSION_PALADIN]
ITEM=i_spellbook_chivalry
MORE1=03ff
ITEM=i_sword_broad
ITEM=i_helm_open
ITEM=i_platemail_gorget
ITEM=i_ringmail_sleeves
ITEM=i_ringmail_tunic
ITEM=i_ringmail_leggings
ITEM=i_boots_thigh
COLOR=0748
ITEM=i_cape
COLOR=0cf
ITEM=i_sash
COLOR=0cf
[NEWBIE PROFESSION_PALADIN ELF]
ITEM=i_spellbook_chivalry
MORE1=03ff
ITEM=i_elven_machete
ITEM=i_helm_winged_2
ITEM=i_leaf_gorget
ITEM=i_leaf_arms
ITEM=i_leaf_chest
ITEM=i_leaf_leggings
ITEM=i_elven_boots
[NEWBIE PROFESSION_PALADIN GARG]
ITEM=i_spellbook_chivalry
MORE1=03ff
ITEM=i_sword_dread
ITEM=i_gargish_plate_chest
ITEM=i_gargish_plate_arms
ITEM=i_gargish_plate_leggings
ITEM=i_gargish_plate_kilt
[NEWBIE PROFESSION_SAMURAI]
ITEM=i_spellbook_bushido
ITEM=i_scissors
ITEM=i_bandage,50
ITEM=i_hakama_shita
COLOR=02c3
ITEM=i_hakama
COLOR=02c3
ITEM=i_shoes_tabi
COLOR=02c3
ITEM=i_hakama_tattsuke
COLOR=022d
ITEM=i_bokuto
ITEM=i_leather_jingasa
[NEWBIE PROFESSION_SAMURAI ELF]
ITEM=i_spellbook_bushido
ITEM=i_scissors
ITEM=i_bandage,50
ITEM=i_hakama_shita
COLOR=02c3
ITEM=i_hakama
COLOR=02c3
ITEM=i_shoes_tabi
COLOR=02c3
ITEM=i_hakama_tattsuke
COLOR=022d
ITEM=i_bokuto
ITEM=i_helm_raven
[NEWBIE PROFESSION_SAMURAI GARG]
ITEM=i_spellbook_bushido
ITEM=i_scissors
ITEM=i_bandage,50
ITEM=i_sword_glass
ITEM=i_gargish_plate_chest
ITEM=i_gargish_plate_arms
ITEM=i_gargish_plate_leggings
ITEM=i_gargish_plate_kilt
[NEWBIE PROFESSION_NINJA]
ITEM=i_spellbook_ninjitsu
ITEM=i_hat_kasa
ITEM=i_hakama_tattsuke
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
ITEM=i_hakama_shita
COLOR=02c3
ITEM=i_boots_tabi
COLOR=02c3
ITEM=i_bomb_smoke
ITEM=i_tekagi
[NEWBIE PROFESSION_NINJA ELF]
ITEM=i_spellbook_ninjitsu
ITEM=i_hat_kasa
ITEM=i_hakama_tattsuke
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
ITEM=i_hakama_shita
COLOR=02c3
ITEM=i_boots_tabi
COLOR=02c3
ITEM=i_bomb_smoke
ITEM=i_sword_assassin_spike
[NEWBIE PROFESSION_NINJA GARG]
ITEM=i_spellbook_ninjitsu
ITEM=i_bomb_smoke
ITEM=i_gargish_dagger
//TO-DO: The following items must have the same rand color instead use a new rand for each one
ITEM=i_gargish_cloth_chest
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
ITEM=i_gargish_cloth_arms
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
ITEM=i_gargish_cloth_leggings
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
ITEM=i_gargish_cloth_kilt
COLOR={089 1 090 1 099 1 0b5 1 0ec 1 01a8 1 0336 1}
/////////////////////
// Skill templates //
/////////////////////
// NOTE: Skill templates are not used if the player select Necromancer,
// Paladin, Samurai and Ninja profession on character creation
[NEWBIE ALCHEMY]
ITEM=i_bottle_empty,4
ITEM=i_mortar_pestle
ITEM=i_robe
COLOR=colors_pink
[NEWBIE ALCHEMY ELF]
ITEM=i_bottle_empty,4
ITEM=i_mortar_pestle
ITEM={i_elven_male_robe1 1 i_elven_male_robe2 1}
COLOR=colors_pink
[NEWBIE ANATOMY]
ITEM=i_bandage,3
ITEM=i_robe
COLOR=colors_yellow
[NEWBIE ANATOMY ELF]
ITEM=i_bandage,3
ITEM={i_elven_male_robe1 1 i_elven_male_robe2 1}
COLOR=colors_yellow
[NEWBIE ANIMALLORE]
ITEM=i_shepherds_crook
ITEM=i_robe
COLOR=colors_blue
[NEWBIE ANIMALLORE ELF]
ITEM=i_shepherds_crook
ITEM={i_elven_male_robe1 1 i_elven_male_robe2 1}
COLOR=colors_blue
[NEWBIE ARCHERY]
ITEM=i_arrow,25
ITEM=i_bow
[NEWBIE ARCHERY ELF]
ITEM=i_arrow,25
ITEM=i_elven_composite_longbow
[NEWBIE ARMSLORE]
ITEM={i_kryss 1 i_katana 1 i_club 1}
[NEWBIE ARMSLORE ELF]
ITEM={i_sword_leafblade 1 i_rune_blade 1 i_mace_diamond 1}
[NEWBIE ARMSLORE GARG]
ITEM={i_bloodblade 1 i_sword_glass 1 i_mace_disc 1}
[NEWBIE BEGGING]
ITEM=i_staff_gnarled
[NEWBIE BEGGING ELF]
ITEM=i_staff_wild
[NEWBIE BEGGING GARG]
ITEM=i_staff_serpentstone
[NEWBIE BLACKSMITHING]
ITEM=i_tongs
ITEM=i_pickaxe
ITEM=i_ingot_iron,50
ITEM=i_apron_half
COLOR=colors_yellow
[NEWBIE BUSHIDO]
ITEM=i_spellbook_bushido
ITEM=i_hakama
ITEM=i_hat_kasa
[NEWBIE BOWCRAFT]
ITEM=i_board,14
ITEM=i_feather,5
ITEM=i_arrow_shaft,5
[NEWBIE CAMPING]
ITEM=i_bedroll
ITEM=i_kindling,5
[NEWBIE CARPENTRY]
ITEM=i_board,10
ITEM=i_saw
ITEM=i_apron_half
COLOR=colors_yellow
[NEWBIE CARTOGRAPHY]
ITEM=i_map_blank
ITEM=i_map_blank
ITEM=i_map_blank
ITEM=i_map_blank
ITEM=i_sextant
[NEWBIE COOKING]
ITEM=i_kindling,2
ITEM=i_lamb_leg_raw
ITEM=i_chicken_leg_raw
ITEM=i_fish_cut_raw
ITEM=i_flour_sack
ITEM=i_pitcher_water
[NEWBIE CHIVALRY]
ITEM=i_spellbook_chivalry
[NEWBIE DETECTINGHIDDEN]
ITEM=i_cape
COLOR=0455
[NEWBIE ENTICEMENT]
ITEM=random_instrument_human
[NEWBIE EVALUATINGINTEL]
//empty
[NEWBIE FENCING]
ITEM=i_kryss
[NEWBIE FENCING ELF]
ITEM=i_sword_leafblade
[NEWBIE FENCING GARG]
ITEM=i_bloodblade
[NEWBIE FISHING]
ITEM=i_fishing_pole
//COLOR=colors_yellow
ITEM=i_hat_floppy
COLOR=colors_yellow
[NEWBIE FISHING ELF]
ITEM=i_fishing_pole
//COLOR=colors_yellow
ITEM=i_helm_circlet1
COLOR=colors_yellow
[NEWBIE FORENSICS]
//empty
[NEWBIE HEALING]
ITEM=i_bandage,50
ITEM=i_scissors
[NEWBIE HERDING]
ITEM=i_shepherds_crook
[NEWBIE HERDING ELF]
ITEM=i_staff_wild
[NEWBIE HIDING]
ITEM=i_cape
COLOR=0455
[NEWBIE INSCRIPTION]
ITEM=i_scroll_blank,2
ITEM=i_book_lg
[NEWBIE ITEMID]
ITEM=i_staff_gnarled
[NEWBIE ITEMID ELF]
ITEM=i_staff_wild
[NEWBIE ITEMID GARG]
ITEM=i_staff_serpentstone
[NEWBIE LOCKPICKING]
ITEM=i_lockpick,20
[NEWBIE LUMBERJACKING]
ITEM=i_hatchet
[NEWBIE LUMBERJACKING ELF]
ITEM=i_hatchet
[NEWBIE LUMBERJACKING GARG]
ITEM=i_dual_shortaxes
[NEWBIE MACEFIGHTING]
ITEM=i_club
[NEWBIE MACEFIGHTING ELF]
ITEM=i_mace_diamond
[NEWBIE MACEFIGHTING GARG]
ITEM=i_mace_disc
[NEWBIE MAGERY]
ITEM=i_spellbook
MORE1=0382a8c38 //3 spells on circle 1-4 (to enable full spellbook just set MORE1=0ffffffff and MORE2=0ffffffff)
ITEM=random_first_circle
ITEM=random_second_circle
ITEM=random_third_circle
ITEM=i_hat_wizards
ITEM=i_robe
COLOR=colors_blue
[NEWBIE MAGERY ELF]
ITEM=i_spellbook
MORE1=0382a8c38 //3 spells on circle 1-4 (to enable full spellbook just set MORE1=0ffffffff and MORE2=0ffffffff)
ITEM=random_first_circle
ITEM=random_second_circle
ITEM=random_third_circle
ITEM=i_helm_circlet1
ITEM={i_elven_male_robe1 1 i_elven_male_robe2 1}
COLOR=colors_blue
[NEWBIE MAGICRESISTANCE]
//empty
[NEWBIE MINING]
ITEM=i_pickaxe
[NEWBIE MUSICIANSHIP]
ITEM=random_instrument_human
[NEWBIE NECROMANCY]
//empty
[NEWBIE NINJITSU]
ITEM=i_spellbook_ninjitsu
ITEM=i_hakama
COLOR=02c3
ITEM=i_hat_kasa
[NEWBIE PARRYING]
ITEM=i_shield_wood
[NEWBIE PARRYING ELF]
ITEM=i_shield_wood
[NEWBIE PARRYING GARG]
ITEM=i_shield_gargish_wooden
[NEWBIE PEACEMAKING]
ITEM=random_instrument_human
[NEWBIE POISONING]
ITEM=i_potion_poisonless,2
[NEWBIE PROVOCATION]
ITEM=random_instrument_human
[NEWBIE SNOOPING]
ITEM=i_lockpick,20
[NEWBIE SPIRITSPEAK]
ITEM=i_cape
COLOR=0455
[NEWBIE STEALING]
ITEM=i_lockpick,20
[NEWBIE SWORDSMANSHIP]
ITEM=i_katana
[NEWBIE SWORDSMANSHIP ELF]
ITEM=i_rune_blade
[NEWBIE SWORDSMANSHIP GARG]
ITEM=i_sword_glass
[NEWBIE TACTICS]
ITEM=i_katana
[NEWBIE TACTICS ELF]
ITEM=i_rune_blade
[NEWBIE TACTICS GARG]
ITEM=i_sword_glass
[NEWBIE TAILORING]
ITEM=i_cloth_bolt
ITEM=i_sewing_kit
[NEWBIE TAMING]
//empty
[NEWBIE TASTEID]
//empty
[NEWBIE TINKERING]
//empty
[NEWBIE TRACKING]
ITEM=i_knife_skinning
ITEM=i_boots_calf
COLOR=colors_yellow
[NEWBIE TRACKING ELF]
ITEM=i_knife_skinning
ITEM=i_elven_boots
COLOR=colors_yellow
[NEWBIE TRACKING GARG]
ITEM=i_knife_skinning
[NEWBIE VETERINARY]
ITEM=i_bandage,5
ITEM=i_scissors
[NEWBIE WRESTLING]
ITEM=i_leather_gloves
[NEWBIE WRESTLING ELF]
ITEM=i_leaf_gloves
[NEWBIE WRESTLING GARG]
ITEM=i_gargish_leather_arms
[NEWBIE THROWING]
ITEM=i_spellbook_mystic
MORE1=0ab
[NEWBIE THROWING GARG]
ITEM=i_spellbook_mystic
MORE1=0ab
ITEM=i_boomerang
[EOF]