forked from Sphereserver/Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sphere_skillmenu.scp
3208 lines (2245 loc) · 77.8 KB
/
sphere_skillmenu.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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//****************************************************************************
// SPHERE by : Menasoft ©1997-2014
// 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, October 7, 2014
//
VERSION=0.56c
[COMMENT sphere_skillmenu]
The sphereserver has a number of hardcoded skillmenu's, this file contains
the softcoded component. The prupose of each is as follows:
sm_alchemy = Triggered by DClicking a alchemy tool
sm_summon = Triggered by the Magery "summoning" spell
sm_summon_familiar = Triggered by the Necromancy "Summon Familiar" spell
sm_polymorph = Triggered by the Magery Polymorph spell
sm_cartography = Triggered by DClicking a cartography tool
sm_bowcraft = Triggered by DClicking a knife and using it on wood
sm_bolts = Triggered by DClicking arrows or shafts
sm_blacksmith = Triggered by DClicking a blacksmithing hammer
sm_carpentry = Triggered by DClicking a carpentry tool
sm_tailor_leather = Triggered by DClicking a sewing kit and using it on leather
sm_tailor_cloth = Triggered by DClicking a sewing kit and using it on cloth
sm_tinker = Triggered by DClicking tinker tools
sm_inscription = Triggered by DClicking a blank scroll
sm_cooking = Triggered by DClicking a skillet, rolling pin or flour sifter
[SKILLMENU sm_inscription]
Spell Circles
ON=i_spell_circle_1
SKILLMENU=sm_inscrip_1
ON=i_spell_circle_2
SKILLMENU=sm_inscrip_2
ON=i_spell_circle_3
SKILLMENU=sm_inscrip_3
ON=i_spell_circle_4
SKILLMENU=sm_inscrip_4
ON=i_spell_circle_5
SKILLMENU=sm_inscrip_5
ON=i_spell_circle_6
SKILLMENU=sm_inscrip_6
ON=i_spell_circle_7
SKILLMENU=sm_inscrip_7
ON=i_spell_circle_8
SKILLMENU=sm_inscrip_8
[SKILLMENU sm_inscrip_1]
Spell Circle 1
ON=i_rune_clumsy
TESTIF=<cancast s_clumsy 00>
MAKEITEM=i_scroll_clumsy
ON=i_rune_create_food
TESTIF=<cancast s_create_food 00>
MAKEITEM=i_scroll_create_food
ON=i_rune_feeblemind
TESTIF=<cancast s_feeblemind 00>
MAKEITEM=i_scroll_feeblemind
ON=i_rune_heal
TESTIF=<cancast s_heal 00>
MAKEITEM=i_scroll_heal
ON=i_rune_magic_arrow
TESTIF=<cancast s_magic_arrow 00>
MAKEITEM=i_scroll_magic_arrow
ON=i_rune_night_sight
TESTIF=<cancast s_night_sight 00>
MAKEITEM=i_scroll_night_sight
ON=i_rune_reactive_armor
TESTIF=<cancast s_reactive_armor 00>
MAKEITEM=i_scroll_reactive_armor
ON=i_rune_weaken
TESTIF=<cancast s_weaken 00>
MAKEITEM=i_scroll_weaken
[SKILLMENU sm_inscrip_2]
Spell Circle 2
ON=i_rune_agility
TESTIF=<cancast s_agility 00>
MAKEITEM=i_scroll_agility
ON=i_rune_cunning
TESTIF=<cancast s_cunning 00>
MAKEITEM=i_scroll_cunning
ON=i_rune_cure
TESTIF=<cancast s_cure 00>
MAKEITEM=i_scroll_cure
ON=i_rune_harm
TESTIF=<cancast s_harm 00>
MAKEITEM=i_scroll_harm
ON=i_rune_magic_trap
TESTIF=<cancast s_magic_trap 00>
MAKEITEM=i_scroll_magic_trap
ON=i_rune_magic_untrap
TESTIF=<cancast s_magic_untrap 00>
MAKEITEM=i_scroll_magic_untrap
ON=i_rune_protection
TESTIF=<cancast s_protection 00>
MAKEITEM=i_scroll_protection
ON=i_rune_strength
TESTIF=<cancast s_strength 00>
MAKEITEM=i_scroll_strength
[SKILLMENU sm_inscrip_3]
Spell Circle 3
ON=i_rune_bless
TESTIF=<cancast s_bless 00>
MAKEITEM=i_scroll_bless
ON=i_rune_fireball
TESTIF=<cancast s_fireball 00>
MAKEITEM=i_scroll_fireball
ON=i_rune_magic_lock
TESTIF=<cancast s_magic_lock 00>
MAKEITEM=i_scroll_magic_lock
ON=i_rune_poison
TESTIF=<cancast s_poison 00>
MAKEITEM=i_scroll_poison
ON=i_rune_telekinesis
TESTIF=<cancast s_telekinesis 00>
MAKEITEM=i_scroll_telekinesis
ON=i_rune_teleport
TESTIF=<cancast s_teleport 00>
MAKEITEM=i_scroll_teleport
ON=i_rune_unlock
TESTIF=<cancast s_unlock 00>
MAKEITEM=i_scroll_unlock
ON=i_rune_wall_of_stone
TESTIF=<cancast s_wall_of_stone 00>
MAKEITEM=i_scroll_wall_of_stone
[SKILLMENU sm_inscrip_4]
Spell Circle 4
ON=i_rune_archcure
TESTIF=<cancast s_archcure 00>
MAKEITEM=i_scroll_archcure
ON=i_rune_archprotection
TESTIF=<cancast s_archprotection 00>
MAKEITEM=i_scroll_archprotection
ON=i_rune_curse
TESTIF=<cancast s_curse 00>
MAKEITEM=i_scroll_curse
ON=i_rune_fire_field
TESTIF=<cancast s_fire_field 00>
MAKEITEM=i_scroll_fire_field
ON=i_rune_greater_heal
TESTIF=<cancast s_greater_heal 00>
MAKEITEM=i_scroll_greater_heal
ON=i_rune_lightning
TESTIF=<cancast s_lightning 00>
MAKEITEM=i_scroll_lightning
ON=i_rune_mana_drain
TESTIF=<cancast s_mana_drain 00>
MAKEITEM=i_scroll_mana_drain
ON=i_rune_recall
TESTIF=<cancast s_recall 00>
MAKEITEM=i_scroll_recall
[SKILLMENU sm_inscrip_5]
Spell Circle 5
ON=i_rune_blade_spirits
TESTIF=<cancast s_blade_spirits 00>
MAKEITEM=i_scroll_blade_spirits
ON=i_rune_dispel_field
TESTIF=<cancast s_dispel_field 00>
MAKEITEM=i_scroll_dispel_field
ON=i_rune_incognito
TESTIF=<cancast s_incognito 00>
MAKEITEM=i_scroll_incognito
ON=i_rune_magic_reflection
TESTIF=<cancast s_magic_reflection 00>
MAKEITEM=i_scroll_magic_reflection
ON=i_rune_mind_blast
TESTIF=<cancast s_mind_blast 00>
MAKEITEM=i_scroll_mind_blast
ON=i_rune_paralyze
TESTIF=<cancast s_paralyze 00>
MAKEITEM=i_scroll_paralyze
ON=i_rune_poison_field
TESTIF=<cancast s_poison_field 00>
MAKEITEM=i_scroll_poison_field
ON=i_rune_summon_creature
TESTIF=<cancast s_summon_creature 00>
MAKEITEM=i_scroll_summon_creature
[SKILLMENU sm_inscrip_6]
Spell Circle 6
ON=i_rune_dispel
TESTIF=<cancast s_dispel 00>
MAKEITEM=i_scroll_dispel
ON=i_rune_energy_bolt
TESTIF=<cancast s_energy_bolt 00>
MAKEITEM=i_scroll_energy_bolt
ON=i_rune_explosion
TESTIF=<cancast s_explosion 00>
MAKEITEM=i_scroll_explosion
ON=i_rune_invisibility
TESTIF=<cancast s_invisibility 00>
MAKEITEM=i_scroll_invisibility
ON=i_rune_mark
TESTIF=<cancast s_mark 00>
MAKEITEM=i_scroll_mark
ON=i_rune_mass_curse
TESTIF=<cancast s_mass_curse 00>
MAKEITEM=i_scroll_mass_curse
ON=i_rune_paralyze_field
TESTIF=<cancast s_paralyzation_field 00>
MAKEITEM=i_scroll_paralyze_field
ON=i_rune_reveal
TESTIF=<cancast s_reveal 00>
MAKEITEM=i_scroll_reveal
[SKILLMENU sm_inscrip_7]
Spell Circle 7
ON=i_rune_chain_lightning
TESTIF=<cancast s_chain_lightning 00>
MAKEITEM=i_scroll_chain_lightning
ON=i_rune_energy_field
TESTIF=<cancast s_energy_field 00>
MAKEITEM=i_scroll_energy_field
ON=i_rune_flamestrike
TESTIF=<cancast s_flamestrike 00>
MAKEITEM=i_scroll_flamestrike
ON=i_rune_gate_travel
TESTIF=<cancast s_gate_travel 00>
MAKEITEM=i_scroll_gate_travel
ON=i_rune_mana_vampire
TESTIF=<cancast s_mana_vampire 00>
MAKEITEM=i_scroll_mana_vampire
ON=i_rune_mass_dispel
TESTIF=<cancast s_mass_dispel 00>
MAKEITEM=i_scroll_mass_dispel
ON=i_rune_meteor_swarm
TESTIF=<cancast s_meteor_swarm 00>
MAKEITEM=i_scroll_meteor_swarm
ON=i_rune_polymorph
TESTIF=<cancast s_polymorph 00>
MAKEITEM=i_scroll_polymorph
[SKILLMENU sm_inscrip_8]
Spell Circle 8
ON=i_rune_earthquake
TESTIF=<cancast s_earthquake 00>
MAKEITEM=i_scroll_earthquake
ON=i_rune_energy_vortex
TESTIF=<cancast s_energy_vortex 00>
MAKEITEM=i_scroll_energy_vortex
ON=i_rune_resurrection
TESTIF=<cancast s_resurrection 00>
MAKEITEM=i_scroll_resurrection
ON=i_rune_summon_elem_air
TESTIF=<cancast s_summon_elem_air 00>
MAKEITEM=i_scroll_summon_elem_air
ON=i_rune_summon_daemon
TESTIF=<cancast s_summon_daemon 00>
MAKEITEM=i_scroll_summon_daemon
ON=i_rune_summon_elem_earth
TESTIF=<cancast s_summon_elem_earth 00>
MAKEITEM=i_scroll_summon_elem_earth
ON=i_rune_summon_elem_fire
TESTIF=<cancast s_summon_elem_fire 00>
MAKEITEM=i_scroll_summon_elem_fire
ON=i_rune_summon_elem_water
TESTIF=<cancast s_summon_elem_water 00>
MAKEITEM=i_scroll_summon_elem_water
[SKILLMENU sm_alchemy]
What sort of potion do you want to make?
ON=i_potion_Agility <name> (<resmake>)
MAKEITEM=i_potion_Agility
ON=i_potion_AgilityGreat <name> (<resmake>)
MAKEITEM=i_potion_AgilityGreat
ON=i_potion_CureLess <name> (<resmake>)
MAKEITEM=i_potion_CureLess
ON=i_potion_Cure <name> (<resmake>)
MAKEITEM=i_potion_Cure
ON=i_potion_CureGreat <name> (<resmake>)
MAKEITEM=i_potion_CureGreat
ON=i_potion_ExplosionLess <name> (<resmake>)
MAKEITEM=i_potion_ExplosionLess
ON=i_potion_Explosion <name> (<resmake>)
MAKEITEM=i_potion_Explosion
ON=i_potion_ExplosionGreat <name> (<resmake>)
MAKEITEM=i_potion_ExplosionGreat
ON=i_potion_HealLess <name> (<resmake>)
MAKEITEM=i_potion_HealLess
ON=i_potion_Heal <name> (<resmake>)
MAKEITEM=i_potion_Heal
ON=i_potion_HealGreat <name> (<resmake>)
MAKEITEM=i_potion_HealGreat
ON=i_potion_Nightsight <name> (<resmake>)
MAKEITEM=i_potion_Nightsight
ON=i_potion_PoisonLess <name> (<resmake>)
MAKEITEM=i_potion_PoisonLess
ON=i_potion_Poison <name> (<resmake>)
MAKEITEM=i_potion_Poison
ON=i_potion_PoisonGreat <name> (<resmake>)
MAKEITEM=i_potion_PoisonGreat
ON=i_potion_PoisonDeadly <name> (<resmake>)
MAKEITEM=i_potion_PoisonDeadly
ON=i_potion_Refresh <name> (<resmake>)
MAKEITEM=i_potion_Refresh
ON=i_potion_RefreshTotal <name> (<resmake>)
MAKEITEM=i_potion_RefreshTotal
ON=i_potion_Strength <name> (<resmake>)
MAKEITEM=i_potion_Strength
ON=i_potion_StrengthGreat <name> (<resmake>)
MAKEITEM=i_potion_StrengthGreat
ON=i_potion_Shrink <name> (<resmake>)
MAKEITEM=i_potion_Shrink
ON=i_potion_Invisibility <name> (<resmake>)
MAKEITEM=i_potion_Invisibility
ON=i_potion_Mana <name> (<resmake>)
MAKEITEM=i_potion_Mana
ON=i_potion_ManaTotal <name> (<resmake>)
MAKEITEM=i_potion_ManaTotal
ON=i_potion_Beastform <name> (<resmake>)
MAKEITEM=i_potion_Beastform
ON=i_potion_Chameleon <name> (<resmake>)
MAKEITEM=i_potion_Chameleon
ON=i_potion_Clever <name> (<resmake>)
MAKEITEM=i_potion_Clever
ON=i_potion_Clever_Great <name> (<resmake>)
MAKEITEM=i_potion_Clever_Great
ON=i_potion_Clumsiness <name> (<resmake>)
MAKEITEM=i_potion_Clumsiness
ON=i_potion_Confusion <name> (<resmake>)
MAKEITEM=i_potion_Confusion
ON=i_potion_Forget_Less <name> (<resmake>)
MAKEITEM=i_potion_Forget_Less
ON=i_potion_Forget <name> (<resmake>)
MAKEITEM=i_potion_Forget
ON=i_potion_Forget_Great <name> (<resmake>)
MAKEITEM=i_potion_Forget_Great
ON=i_potion_Gender <name> (<resmake>)
MAKEITEM=i_potion_Gender
ON=i_potion_Trance <name> (<resmake>)
MAKEITEM=i_potion_Trance
ON=i_potion_Trance_Great <name> (<resmake>)
MAKEITEM=i_potion_Trance_Great
ON=i_potion_Restore <name> (<resmake>)
MAKEITEM=i_potion_Restore
ON=i_potion_Restore_Great <name> (<resmake>)
MAKEITEM=i_potion_Restore_Great
ON=i_potion_Sustenance <name> (<resmake>)
MAKEITEM=i_potion_Sustenance
ON=i_potion_Monster <name> (<resmake>)
MAKEITEM=i_potion_Monster
ON=i_potion_Particle <name> (<resmake>)
MAKEITEM=i_potion_Particle
ON=i_potion_Shield <name> (<resmake>)
MAKEITEM=i_potion_Shield
ON=i_potion_Steelskin <name> (<resmake>)
MAKEITEM=i_potion_Steelskin
ON=i_potion_Stoneskin <name> (<resmake>)
MAKEITEM=i_potion_Stoneskin
ON=i_potion_Weakness <name> (<resmake>)
MAKEITEM=i_potion_Weakness
[SKILLMENU sm_summon]
What do you want to summon ?
ON=i_PET_SCORP <name>
TEST=MAGERY 75.0
SUMMON=c_SCORPION_GIANT
ON=i_PET_BEAR <name>
TEST=MAGERY 50.0
SUMMON=c_Bear_Brown
ON=i_PET_RAT_2 <name>
TEST=MAGERY 35.0
SUMMON=c_RAT_GIANT
ON=i_PET_CHICKEN <name>
TEST=MAGERY 35.0
SUMMON=c_CHICKEN
ON=i_PET_DEER <name>
TEST=MAGERY 35.0
SUMMON=c_STAG
ON=i_PET_DEER <name>
TEST=MAGERY 35.0
SUMMON=c_DOE
ON=i_pet_DOG <name>
TEST=MAGERY 35.0
SUMMON=c_DOG
//ON=i_pet_SHEEP <name>
//TEST=MAGERY 35.0
//SUMMON=c_SHEEP_SHORN
ON=i_PET_CROC <name>
TEST=MAGERY 35.0
SUMMON=c_Alligator
ON=i_pet_Grizzly <name>
TEST=MAGERY 35.0
SUMMON=c_Bear_Grizzly
ON=i_pet_horse_brown_lt <name>
TEST=MAGERY 35.0
SUMMON=HORSES
ON=i_pet_bear_polar <name>
TEST=MAGERY 75.0
SUMMON=c_Bear_Polar
ON=i_pet_rabbit_2 <name>
TEST=MAGERY 20.0
SUMMON=c_Rabbit
ON=i_pet_snake <name>
TEST=MAGERY 25.0
SUMMON=c_Snake
[SKILLMENU sm_Summon_Familiar]
What do you want to summon ?
ON=i_pet_demon_horde <name>
TEST=NECROMANCY 30.0,SPIRITSPEAK 30.0
SUMMON=c_demon_horde_minion
ON=i_pet_wisp <name>
TEST=NECROMANCY 50.0,SPIRITSPEAK 50.0
SUMMON=c_wisp_dark //Should be c_wisp_shadow ?
ON=i_pet_wolf_grey <name>
TEST=NECROMANCY 60.0,SPIRITSPEAK 60.0
SUMMON=c_wolf_dark
//ON=i_pet_death_adder <name>
//TEST=NECROMANCY 80.0,SPIRITSPEAK 80.0
//SUMMON=c_Death_adder
ON=i_pet_vampirebat <name>
TEST=NECROMANCY 100.0,SPIRITSPEAK 100.0
SUMMON=c_vampire_bat
[SKILLMENU sm_polymorph]
What do you want to polymorph into?
ON=i_pet_MAN Man
TEST=MAGERY 40.0
POLY C_MAN
ON=i_pet_woman Woman
TEST=MAGERY 40.0
POLY C_WOMAN
ON=i_PET_CHICKEN Chicken
TEST=MAGERY 40.0
POLY c_CHICKEN
ON=i_pet_DOG Dog
TEST=MAGERY 60.0
POLY c_DOG
ON=i_PET_SNAKE_GIANT Giant Serpant
TEST=MAGERY 60.0
POLY c_SNAKE_GIANT
on=i_pet_croc <name>
test=magery 65.0
poly c_alligator
ON=i_PET_DEMON Demon
TEST=MAGERY 85.0
POLY c_DEMON
ON=i_pet_DRAGON Dragon
TEST=MAGERY 98.0
POLY { c_dragon 1 c_dragon_red 1 }
[SKILLMENU sm_cartography]
What sort of map do you want to draw?
ON=i_mapadd1 Local Map
MAKEITEM=i_map_local
ON=i_mapadd2 City Map
MAKEITEM=i_map_city
ON=i_mapadd3 Sea Chart Map
MAKEITEM=i_map_sea_chart
ON=i_mapadd4 World Map
MAKEITEM=i_map_world
[SKILLMENU sm_BOWCRAFT]
// knife on wood
What do you want to carve the wood into?
ON=i_KINDLING <name> (<resmake>)
MAKEITEM=i_KINDLING
ON=i_TORCH <name> (<resmake>)
MAKEITEM=i_TORCH
ON=i_ARROW_SHAFT <name> (<resmake>)
MAKEITEM=i_ARROW_SHAFT
ON=i_bow <name> (<resmake>)
MAKEITEM=i_bow
ON=i_CROSSBOW <name> (<resmake>)
MAKEITEM=i_CROSSBOW
ON=i_crossbow_heavy <name> (<resmake>)
MAKEITEM=i_crossbow_heavy
ON=i_bow Exceptional Bows
SKILLMENU=sm_bows_excep
[SKILLMENU sm_bolts]
// combine shafts with feathers.
Select arrow type
ON=i_xbolt <name> (<resmake>)
MAKEITEM=i_xbolt
ON=i_arrow <name> (<resmake>)
MAKEITEM=i_arrow
[SKILLMENU sm_bows_excep] // Exceptional Bows
Exceptional Bows
ON=i_BOW_SUP <name> (<resmake>)
MAKEITEM=i_BOW_SUP
ON=i_XBOW_SUP <name> (<resmake>)
MAKEITEM=i_XBOW_SUP
ON=i_HXBOW_SUP <name> (<resmake>)
MAKEITEM=i_HXBOW_SUP
ON=i_BOW_EXCEP <name> (<resmake>)
MAKEITEM=i_BOW_EXCEP
ON=i_XBOW_EXCEP <name> (<resmake>)
MAKEITEM=i_XBOW_EXCEP
ON=i_HXBOW_EXCEP <name> (<resmake>)
MAKEITEM=i_HXBOW_EXCEP
ON=i_bow_elven <name> (<resmake>)
MAKEITEM=i_bow_elven
// Blacksmithing section
[SKILLMENU sm_blacksmith]
Blacksmithing
ON=i_ANVIL Repair // pretty much anyone can attempt to repair.
TEST=BLACKSMITHING 1.0
REPAIR
ON=i_shield_round_bronze Shields
SKILLMENU=sm_shields
ON=i_platemail_chest Armor
SKILLMENU=sm_armor
ON=i_sword_viking Weapons
SKILLMENU=sm_weapons
ON=i_decorative_armor Colored Armor
SKILLMENU=sm_colored_armor
ON=i_decorative_armor Magic Armor
SKILLMENU=sm_magic_armor
[SKILLMENU sm_shields]
Shields
ON=i_shield_buckler <name> (<resmake>)
MAKEITEM=i_shield_buckler
ON=i_shield_round_bronze <name> (<resmake>)
MAKEITEM=i_shield_round_bronze
ON=i_shield_round_metal <name> (<resmake>)
MAKEITEM=i_shield_round_metal
ON=i_shield_kite_metal <name> (<resmake>)
MAKEITEM=i_shield_kite_metal
ON=i_shield_heater <name> (<resmake>)
MAKEITEM=i_shield_heater
[SKILLMENU sm_armor]
Armor
ON=i_platemail_chest Plate Mail
SKILLMENU=sm_platemail_armor
ON=i_chainmail_tunic Chain Mail
SKILLMENU=sm_chainmail_armor
ON=i_ringmail_tunic Ring Mail
SKILLMENU=sm_ringmail_armor
ON=i_bascinet Helmets
SKILLMENU=sm_helmets
[SKILLMENU sm_weapons]
Weapons
ON=i_sword_viking Swords & Blades
SKILLMENU=sm_swords_blades
ON=i_axe_battle Axes
SKILLMENU=sm_axes
ON=i_mace Maces & Hammers
SKILLMENU=sm_maces_hammers
ON=i_pitchfork Spears and Forks
SKILLMENU=sm_spears_forks
ON=i_halberd Pole Arms
SKILLMENU=sm_pole_arms
[SKILLMENU sm_platemail_armor]
Plate Mail
ON=i_platemail_chest <name> (<resmake>)
MAKEITEM=i_platemail_chest
ON=i_armor_female_plate <name> (<resmake>)
MAKEITEM=i_armor_female_plate
ON=i_armor_female_studded <name> (<resmake>)
MAKEITEM=i_armor_female_studded
ON=i_platemail_gorget <name> (<resmake>)
MAKEITEM=i_platemail_gorget
ON=i_platemail_gloves <name> (<resmake>)
MAKEITEM=i_platemail_gloves
ON=i_platemail_helm <name> (<resmake>)
MAKEITEM=i_platemail_helm
ON=i_platemail_leggings <name> (<resmake>)
MAKEITEM=i_platemail_leggings
ON=i_platemail_arms <name> (<resmake>)
MAKEITEM=i_platemail_arms
[SKILLMENU sm_chainmail_armor]
Chain Mail
ON=i_chainmail_tunic <name> (<resmake>)
MAKEITEM=i_chainmail_tunic
ON=i_chainmail_leggings <name> (<resmake>)
MAKEITEM=i_chainmail_leggings
ON=i_chainmail_coif <name> (<resmake>)
MAKEITEM=i_chainmail_coif
[SKILLMENU sm_ringmail_armor]
Ring Mail
ON=i_ringmail_tunic <name> (<resmake>)
MAKEITEM=i_ringmail_tunic
ON=i_ringmail_sleeves <name> (<resmake>)
MAKEITEM=i_ringmail_sleeves
ON=i_ringmail_leggings <name> (<resmake>)
MAKEITEM=i_ringmail_leggings
ON=i_ringmail_gloves <name> (<resmake>)
MAKEITEM=i_ringmail_gloves
[SKILLMENU sm_helmets]
Helmets
ON=i_helm_closed <name> (<resmake>)
MAKEITEM=i_helm_closed
ON=i_helm_open <name> (<resmake>)
MAKEITEM=i_helm_open
ON=i_bascinet <name> (<resmake>)
MAKEITEM=i_bascinet
ON=i_helm_nose <name> (<resmake>)
MAKEITEM=i_helm_nose
[SKILLMENU sm_swords_blades]
Swords & Blades
ON=i_sword_broad <name> (<resmake>)
MAKEITEM=i_sword_broad
ON=i_cutlass <name> (<resmake>)
MAKEITEM=i_cutlass
ON=i_dagger <name> (<resmake>)
MAKEITEM=i_dagger
ON=i_katana <name> (<resmake>)
MAKEITEM=i_katana
ON=i_kryss <name> (<resmake>)
MAKEITEM=i_kryss
ON=i_sword_long <name> (<resmake>)
MAKEITEM=i_sword_long
ON=i_scimitar <name> (<resmake>)
MAKEITEM=i_scimitar
ON=i_sword_viking <name> (<resmake>)
MAKEITEM=i_sword_viking
[SKILLMENU sm_axes]
Axes
ON=i_axe_exec <name> (<resmake>)
MAKEITEM=i_axe_exec
ON=i_axe <name> (<resmake>)
MAKEITEM=i_axe
ON=i_axe_double <name> (<resmake>)
MAKEITEM=i_axe_double
ON=i_axe_battle <name> (<resmake>)
MAKEITEM=i_axe_battle
ON=i_axe_battle_large <name> (<resmake>)
MAKEITEM=i_axe_battle_large
ON=i_axe_war <name> (<resmake>)
MAKEITEM=i_axe_war
ON=i_axe_two_hand <name> (<resmake>)
MAKEITEM=i_axe_two_hand
[SKILLMENU sm_maces_hammers]
Maces & Hammers
ON=i_hammer_pick <name> (<resmake>)
MAKEITEM=i_hammer_pick
ON=i_mace <name> (<resmake>)
MAKEITEM=i_mace
ON=i_maul <name> (<resmake>)
MAKEITEM=i_maul
ON=i_hammer_smith <name> (<resmake>)
MAKEITEM=i_hammer_smith
ON=i_hammer_war <name> (<resmake>)
MAKEITEM=i_hammer_war
ON=i_mace_war <name> (<resmake>)
MAKEITEM=i_mace_war
[SKILLMENU sm_spears_forks]
Spears & Forks
ON=i_spear_short <name> (<resmake>)
MAKEITEM=i_spear_short
ON=i_spear <name> (<resmake>)
MAKEITEM=i_spear
ON=i_war_fork <name> (<resmake>)
MAKEITEM=i_war_fork
[SKILLMENU sm_pole_arms]
Pole Arms
ON=i_bardiche <name> (<resmake>)
MAKEITEM=i_bardiche
ON=i_halberd <name> (<resmake>)
MAKEITEM=i_halberd
[SKILLMENU sm_colored_armor]
Colored Armor & Shields
ON=i_platemail_chest Bronze Plate Armor
SKILLMENU=sm_bronze_armor
ON=i_decorative_armor Rusty Armor
SKILLMENU=sm_rusty_armor
ON=i_decorative_armor Old Copper Armor
SKILLMENU=sm_old_copper_armor
ON=i_decorative_armor Dull Copper Armor
SKILLMENU=sm_dull_copper_armor
ON=i_decorative_armor Copper Armor
SKILLMENU=sm_copper_armor
ON=i_decorative_armor Silver Armor
SKILLMENU=sm_silver_armor
ON=i_decorative_armor Golden Armor
SKILLMENU=sm_golden_armor
ON=i_decorative_armor Black Rock Armor
SKILLMENU=sm_blackrock_armor
ON=i_decorative_armor Blood Rock Armor
SKILLMENU=sm_bloodrock_armor
ON=i_decorative_armor Mytheril Armor
SKILLMENU=sm_mytheril_armor
ON=i_decorative_armor Verite Armor
SKILLMENU=sm_verite_armor
ON=i_decorative_armor Valorite Armor
SKILLMENU=sm_valorite_armor
ON=i_decorative_armor Rose Armor
SKILLMENU=sm_rose_armor
ON=i_decorative_armor Agapite Armor
SKILLMENU=sm_agapite_armor
ON=i_decorative_armor Shadow Armor
SKILLMENU=sm_shadow_armor
[SKILLMENU sm_golden_armor]
Golden Armor
ON=i_GOLDEN_PLATE_HELM <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATE_HELM
ON=i_GOLDEN_PLATEMAIL_GORGET <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATEMAIL_GORGET
ON=i_GOLDEN_PLATEMAIL_GAUNTLETS <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATEMAIL_GAUNTLETS
ON=i_GOLDEN_PLATEMAIL_ARMS <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATEMAIL_ARMS
ON=i_GOLDEN_PLATEMAIL_leggings <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATEMAIL_leggings
ON=i_GOLDEN_FEMALE_PLATEMAIL <name> (<resmake>)
MAKEITEM=i_GOLDEN_FEMALE_PLATEMAIL
ON=i_GOLDEN_PLATEMAIL <name> (<resmake>)
MAKEITEM=i_GOLDEN_PLATEMAIL
ON=i_GOLDEN_CHAINMAIL_COIF <name> (<resmake>)
MAKEITEM=i_GOLDEN_CHAINMAIL_COIF
ON=i_GOLDEN_CHAINMAIL_LEGGINGS <name> (<resmake>)
MAKEITEM=i_GOLDEN_CHAINMAIL_LEGGINGS
ON=i_GOLDEN_CHAINMAIL_TUNIC <name> (<resmake>)
MAKEITEM=i_GOLDEN_CHAINMAIL_TUNIC
ON=i_GOLDEN_RINGMAIL_GLOVES <name> (<resmake>)
MAKEITEM=i_GOLDEN_RINGMAIL_GLOVES
ON=i_GOLDEN_RINGMAIL_SLEEVES <name> (<resmake>)
MAKEITEM=i_GOLDEN_RINGMAIL_SLEEVES
ON=i_GOLDEN_RINGMAIL_LEGGINGS <name> (<resmake>)
MAKEITEM=i_GOLDEN_RINGMAIL_LEGGINGS
ON=i_GOLDEN_RINGMAIL_TUNIC <name> (<resmake>)
MAKEITEM=i_GOLDEN_RINGMAIL_TUNIC
ON=i_GOLDEN_BUCKLER_SHIELD <name> (<resmake>)
MAKEITEM=i_GOLDEN_BUCKLER_SHIELD
ON=i_GOLDEN_METAL_SHIELD <name> (<resmake>)
MAKEITEM=i_GOLDEN_METAL_SHIELD
ON=i_GOLDEN_HEATER_SHIELD <name> (<resmake>)
MAKEITEM=i_GOLDEN_HEATER_SHIELD
ON=i_GOLDEN_CLOSED_HELM <name> (<resmake>)
MAKEITEM=i_GOLDEN_CLOSED_HELM
ON=i_GOLDEN_HELMET <name> (<resmake>)
MAKEITEM=i_GOLDEN_HELMET
ON=i_GOLDEN_BASCINET <name> (<resmake>)
MAKEITEM=i_GOLDEN_BASCINET
ON=i_GOLDEN_NOSE_HELM <name> (<resmake>)
MAKEITEM=i_GOLDEN_NOSE_HELM
[SKILLMENU sm_copper_armor]
Copper Armor
ON=i_Copper_PLATE_HELM <name> (<resmake>)
MAKEITEM=i_Copper_PLATE_HELM
ON=i_Copper_PLATEMAIL_GORGET <name> (<resmake>)
MAKEITEM=i_Copper_PLATEMAIL_GORGET
ON=i_Copper_PLATEMAIL_GAUNTLETS <name> (<resmake>)
MAKEITEM=i_Copper_PLATEMAIL_GAUNTLETS
ON=i_Copper_PLATEMAIL_ARMS <name> (<resmake>)
MAKEITEM=i_Copper_PLATEMAIL_ARMS
ON=i_Copper_PLATEMAIL_leggings <name> (<resmake>)
MAKEITEM=i_Copper_PLATEMAIL_leggings
ON=i_Copper_FEMALE_PLATEMAIL <name> (<resmake>)
MAKEITEM=i_Copper_FEMALE_PLATEMAIL
ON=i_Copper_PLATEMAIL <name> (<resmake>)
MAKEITEM=i_Copper_PLATEMAIL
ON=i_Copper_CHAINMAIL_COIF <name> (<resmake>)
MAKEITEM=i_Copper_CHAINMAIL_COIF
ON=i_Copper_CHAINMAIL_LEGGINGS <name> (<resmake>)
MAKEITEM=i_Copper_CHAINMAIL_LEGGINGS
ON=i_Copper_CHAINMAIL_TUNIC <name> (<resmake>)
MAKEITEM=i_Copper_CHAINMAIL_TUNIC
ON=i_Copper_RINGMAIL_GLOVES <name> (<resmake>)
MAKEITEM=i_Copper_RINGMAIL_GLOVES
ON=i_Copper_RINGMAIL_SLEEVES <name> (<resmake>)
MAKEITEM=i_Copper_RINGMAIL_SLEEVES
ON=i_Copper_RINGMAIL_LEGGINGS <name> (<resmake>)
MAKEITEM=i_Copper_RINGMAIL_LEGGINGS
ON=i_Copper_RINGMAIL_TUNIC <name> (<resmake>)
MAKEITEM=i_Copper_RINGMAIL_TUNIC
ON=i_Copper_BUCKLER_SHIELD <name> (<resmake>)
MAKEITEM=i_Copper_BUCKLER_SHIELD
ON=i_Copper_METAL_SHIELD <name> (<resmake>)
MAKEITEM=i_Copper_METAL_SHIELD
ON=i_Copper_HEATER_SHIELD <name> (<resmake>)
MAKEITEM=i_Copper_HEATER_SHIELD
ON=i_Copper_CLOSED_HELM <name> (<resmake>)
MAKEITEM=i_Copper_CLOSED_HELM
ON=i_Copper_HELMET <name> (<resmake>)
MAKEITEM=i_Copper_HELMET
ON=i_Copper_BASCINET <name> (<resmake>)
MAKEITEM=i_Copper_BASCINET
ON=i_Copper_NOSE_HELM <name> (<resmake>)
MAKEITEM=i_Copper_NOSE_HELM
[SKILLMENU sm_silver_armor]
Silver Armor
ON=i_SILVER_PLATE_HELM <name> (<resmake>)
MAKEITEM=i_SILVER_PLATE_HELM
ON=i_SILVER_PLATEMAIL_GORGET <name> (<resmake>)
MAKEITEM=i_SILVER_PLATEMAIL_GORGET
ON=i_SILVER_PLATEMAIL_GAUNTLETS <name> (<resmake>)
MAKEITEM=i_SILVER_PLATEMAIL_GAUNTLETS
ON=i_SILVER_PLATEMAIL_ARMS <name> (<resmake>)
MAKEITEM=i_SILVER_PLATEMAIL_ARMS
ON=i_SILVER_PLATEMAIL_leggings <name> (<resmake>)
MAKEITEM=i_SILVER_PLATEMAIL_leggings