forked from Sphereserver/Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sphere_menu.scp
4394 lines (4191 loc) · 88.1 KB
/
sphere_menu.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-2015
// 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: Monday, Jun 29, 2015
//
VERSION=0.56c
// MENU_PAGEGM -------------------------------------
[FUNCTION HelpPage]
// HelpPage is executed whenever someone presses the "HelpPage" button
MENU MENU_PAGEGM
[MENU MENU_PAGEGM] // PAGEGM is executed whenever someone presses the "Page GM" button
SPHERE Main Support Menu
ON=0 PAGE A GM: Sends a notice to the server administrators, if they are online. They can help you with almost all your in-game problems.
MENU MENU_PAGEGM_3
ON=0 WEB MENU: Provides a list of links to various websites.
MENU MENU_PAGEGM_2
ON=0 INFO: Shows the version of SPHERE this server is running.
VERSION
ON=0 SERVER STATUS: Shows some status information about this server.
INFORMATION
ON=0 GO TO THE HELP ROOM: This will teleport you to the Help Desk of Hell.
MENU MENU_PAGEGM_4
[MENU MENU_PAGEGM_2]
Web Menu
ON=0 SPHERE HOMEPAGE: Redirects you to the official SPHERE homepage.
WEBLINK http:\\www.sphereserver.net
[MENU MENU_PAGEGM_3]
GM Page Menu
ON=0 STUCK: Use this option if you cant move and need GM assistance.
GMPAGE Stuck
ON=0 ITEM PROBLEM: Use this if you have run into a problem with a specific item.
GMPAGE Item Problem
ON=0 BUG: Use this if you have found a bug that you would like to report to the GMs.
GMPAGE Bug Report
ON=0 INFO: Use this if you need helping information about some part of the game.
GMPAGE Information
ON=0 OTHER: Use this for anything not listed above.
GMPAGE Other
[MENU MENU_PAGEGM_4]
Are you sure you want to be teleported to the Depths of Development? You will be stuck there until a GM teleports you back to the world.
ON=0 YES, down we go!
//GOPLACE a_helpdesk
SERV.NEWITEM i_teleport_delay
NEW.EQUIP
ON=0 NO, I'd rather stay here.
SYSMESSAGE Help request aborted.
[ITEMDEF i_teleport_delay]
// Create an object that just is an equipped timer.
// SERV.NEWITEM i_teleport_delay
// NEW.EQUIP // We must equip this on the char we want to effect.
// NEW.TIMER 100 // if we want to change the time
NAME=Delay Teleport
ID=i_handr_1
TYPE=T_EQ_SCRIPT
WEIGHT=0
LAYER=layer_special
ON=@Create
ATTR=attr_invis|attr_decay
MORE1=10
MOREP=a_helpdesk
ON=@Equip
TIMER=1
ON=@Timer
// Take the effect we would like.
if ( <CONT> )
if ( <MORE1> )
CONT.message <eval <MORE1>>
MORE1 -= 1
TIMER=1
return 1
else
CONT.go <MOREP>
endif
endif
// normal timer fall through is to delete the item
remove
return 1
// This is the guildmaster initial selection screen for guildstones
[MENU MENU_GUILD_MASTER]
<Name> (<MasterTitle> <Master>)
ON=0 Recruit someone into the guild
RECRUIT
ON=0 View the current roster.
VIEWROSTER
ON=0 View the guild's charter.
VIEWCHARTER
ON=0 Declare your fealty. You are currently loyal to <LoyalTo>.
DECLAREFEALTY
ON=0 Toggle showing the guild's abbreviation in your name to unguilded people. Currently <AbbreviationToggle>.
TOGGLEABBREVIATION
ON=0 Resign from the guild.
RESIGN
ON=0 View list of candidates who have been sponsored to the guild.
VIEWCANDIDATES
ON=0 View list of guilds that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of guilds that have declared war on <Name>.
VIEWTHREATS
ON=0 Access Guild <MasterGenderTitle> functions.
MASTERMENU
// This is the NON-guildmaster initial selection screen for guildstones
[MENU MENU_GUILD_MEMBER]
<Name> (<MasterTitle> <Master>)
ON=0 Recruit someone into the guild
RECRUIT
ON=0 View the current roster.
VIEWROSTER
ON=0 View the guild's charter.
VIEWCHARTER
ON=0 Declare your fealty. You are currently loyal to <LoyalTo>.
DECLAREFEALTY
ON=0 Toggle showing the guild's abbreviation in your name to unguilded people. Currently <AbbreviationToggle>.
TOGGLEABBREVIATION
ON=0 Resign from the guild.
RESIGN
ON=0 View list of candidates who have been sponsored to the guild.
VIEWCANDIDATES
ON=0 View list of guilds that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of guilds that have declared war on <Name>.
VIEWTHREATS
// Guild master functions.
[MENU MENU_GUILD_MASTERFUNC]
<Name>, Guild <MasterGenderTitle> functions
ON=0 Set the guild name.
SETNAME
ON=0 Set the guilds abbreviation.
SETABBREVIATION
ON=0 Change the alignment of guild. (currently a <AlignType> guild.)
CHANGEALIGN
ON=0 Set the guild's charter.
SETCHARTER
ON=0 Dismiss a member.
DISMISSMEMBER
ON=0 Declare war.
DECLAREWAR
ON=0 Declare peace.
DECLAREPEACE
ON=0 Accept a candidate seeking membership.
ACCEPTCANDIDATE
ON=0 Refuse a candidate seeking membership.
REFUSECANDIDATE
ON=0 Set the guildmaster's title.
SETGMTITLE
ON=0 Grant a title to another member.
GRANTTITLE
//ON=0 Teleport this guildstone.
//TELEPORT
ON=0 Return to main menu.
RETURNMAINMENU
//SEE THE FUNCTION UNDER sphere_triggers.scp
//on=0 Transfer the Guild to an existing member.
//TRANSFERGUILD
//ON=0 Issue Chaos Shields
//NEWITEM=i_shield_chaos
//NEW.LINK=<SERIAL>
//ON=0 Issue Order Shields
//NEWITEM=I_SHIELD_ORDER
//NEW.LINK=<SERIAL>
[MENU MENU_GUILD_NON]
// Non-member view.
<Name> (<MasterTitle> <Master>)
ON=0 View the guild's charter.
VIEWCHARTER
ON=0 View list of guilds that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of guilds that have declared war on <Name>.
VIEWTHREATS
[MENU MENU_GUILD_ALIGN]
Change the alignment of guild. (currently a <AlignType> guild.)
ON=0 Chaos
CHANGEALIGN 2
ON=0 Neutral
CHANGEALIGN 0
ON=0 Order
CHANGEALIGN 1
// Town stones. mayor view
[MENU MENU_TOWN_MAYOR]
Town of <Name> (<MasterTitle> <Master>)
ON=0 View the current citizenship.
VIEWROSTER
ON=0 View the town's charter.
VIEWCHARTER
ON=0 Vote for mayor. You are currently loyal to <LoyalTo>.
DECLAREFEALTY
ON=0 Resign from the town.
RESIGN
//ON=0 View list of those banished from the town.
//VIEWBANISHED
ON=0 View list of those applying for citizenship.
VIEWCANDIDATES
ON=0 View list of towns that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of towns that have declared war on <Name>.
VIEWTHREATS
ON=0 Access Mayoral functions.
MASTERMENU
// This is the member, NON-mayor townstones
[MENU MENU_TOWN_MEMBER]
Town of <Name> (<MasterTitle> <Master>)
ON=0 View the current citizenship.
VIEWROSTER
ON=0 View the town's charter.
VIEWCHARTER
ON=0 Vote for mayor. You are currently loyal to <LoyalTo>.
DECLAREFEALTY
ON=0 Resign from the town.
RESIGN
//ON=0 View list of those banished from the town.
//VIEWBANISHED
ON=0 View list of those applying for citizenship.
VIEWCANDIDATES
ON=0 View list of towns that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of towns that have declared war on <Name>.
VIEWTHREATS
// Mayor functions.
[MENU MENU_TOWN_MAYORFUNC]
Town of <Name>, Mayoral functions
ON=0 Set the town name.
SETNAME
ON=0 Set the town's charter.
SETCHARTER
ON=0 Banish a citizen.
DISMISSMEMBER
ON=0 Declare war.
DECLAREWAR
ON=0 Declare peace.
DECLAREPEACE
ON=0 Accept a person seeking citizenship.
ACCEPTCANDIDATE
ON=0 Refuse a person seeking citizenship.
REFUSECANDIDATE
ON=0 Set the mayors's title.
SETGMTITLE
ON=0 Grant a title to a citizen.
GRANTTITLE
ON=0 Return to main menu.
RETURNMAINMENU
// Non-member view.
[MENU MENU_TOWN_NON]
Town of <Name> (<MasterTitle> <Master>)
ON=0 View the towns's charter.
VIEWCHARTER
ON=0 View list of towns that <Name> has declared war on.
VIEWENEMYS
ON=0 View list of towns that have declared war on <Name>.
VIEWTHREATS
ON=0 Apply for citizenship
APPLYTOJOIN
// ITEMMENUS SECTION -------------------------------------
// Main start menu, used when /add with no parms are passed
[MENU MENU_ADDITEM]
SPHERE Main GM Menu
ON=0 GameMaster Features
MENU M_GMFEATURES
ON=0 Valuables
MENU M_ADDI_VAL
ON=0 NPCs
MENU M_ADDN
ON=0 Magic Items
MENU M_ADDI_MAGIC
ON=0 Tools & Trades
MENU M_ADDI_TOOLS
ON=0 Raw Materials
MENU M_ADDI_RAWMAT
ON=0 Potions & Flasks
MENU M_ADDI_POTION
ON=0 Scattered Materials
MENU M_ADDI_RAWMAT_MISC
ON=0 Weapons & Armor
MENU M_ADDI_WEPARM
ON=0 Magic Weapons & Armor
MENU M_ADDI_WEPARM_MAGIC
ON=0 Equipment & Items
MENU M_ADDI_PROV
ON=0 Clothing
MENU M_ADDI_CLOTHING
ON=0 Banners & Signs
MENU M_ADDI_SIGNS
ON=0 Food
MENU M_ADDI_FOOD
ON=0 Plants
MENU M_ADDI_PLANTS
ON=0 Rocks, Stones, Boulders
MENU M_ADDI_STONE
ON=0 Structures
MENU M_ADDI_STRUCTURE
// GM Features and Travel Places Menus
[MENU M_GMFEATURES]
GameMaster Features
ON=0 Items
MENU M_ADDI_GM
ON=0 Travel to Places
MENU M_TRAV
ON=0 Hair & Beards
MENU M_ADDI_HAIR
ON=0 House Deeds
MENU m_addi_deeds
ON=0 PREVIOUS MENU
MENU MENU_ADDITEM
[MENU M_ADDI_GM]
GameMaster Items
ON=0 GM Robe (undyed)
ADD i_robe_gm
ON=0 Magic Key
ADD i_key_magic
ON=0 Teleport Rune
ADD i_RUNE_GLOWING_1
ON=0 Lord British Armor
ADD i_PERSON_LORD_BRITISH
ON=0 Blackthorne Robe
ADD i_PERSON_BLACK_THORNE
ON=0 Death Shroud
ADD i_deathshroud
ON=0 PREVIOUS MENU
MENU M_GMFEATURES
[MENU M_TRAV]
Travel to Places
ON=0 Special GM Areas
MENU M_TRAV_GM
ON=0 Towns
MENU M_TRAV_TOWN
ON=0 Councelor Halls
MENU M_TRAV_COUNC
ON=0 Dungeons
MENU M_TRAV_DUNG
ON=0 Shrines
MENU M_TRAV_SHRINE
ON=0 Graveyards
MENU M_TRAV_GRAVE
ON=0 Forts
MENU M_TRAV_FORT
ON=0 Sightings
MENU M_TRAV_SIGHTS
ON=0 MoonGates
MENU M_TRAV_MOON
ON=0 T2A Locations
MENU M_TRAV_T2A
ON=0 PREVIOUS MENU
MENU M_GMFEATURES
[MENU M_TRAV_GM]
Special GM Areas
ON=0 Jail #1
GO JAIL1
ON=0 Jail #2
GO JAIL2
ON=0 Jail #3
GO JAIL3
ON=0 Jail #4
GO JAIL4
ON=0 Jail #5
GO JAIL5
ON=0 Jail #6
GO JAIL6
ON=0 Jail #7
GO JAIL7
ON=0 Jail #8
GO JAIL8
ON=0 Jail #9
GO JAIL9
ON=0 Jail #10
GO JAIL10
ON=0 Green Acres
GO GREEN ACRES
ON=0 Green Acres 2
GO GREEN ACRES 2
ON=0 Green Acres 3
GO GREEN ACRES 3
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_TOWN]
Towns
ON=0 Britain
go Britain
ON=0 Bucaneer's Den
go Buccaneer's Den
ON=0 Cove (center)
go Cove
ON=0 Jhelom
go Jhelom
ON=0 Minoc
go Minoc
ON=0 Moonglow
go Moonglow
ON=0 Nujel'm
go Nujel'm
ON=0 Ocllo
go Ocllo
ON=0 Serpent's Hold
go Serpent's Hold
ON=0 Skara Brae
go Skara Brae
ON=0 Trinsic
go Trinsic
ON=0 Vesper
go Vesper
ON=0 Wind
go Wind
ON=0 Yew
go Yew
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_COUNC]
Councelor Halls
ON=0 Moonglow
go Moonglow Councelor's Guild Hall
ON=0 Skara Brae
go Skara Brae Councelor's Guild Hall
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_DUNG]
Dungeons
ON=0 Covetous (entrance)
go Covetous Entrance
ON=0 Deceit (entrance)
go Deceit Entrance
ON=0 Despise (entrance)
go Despise Entrance
ON=0 Destard (entrance)
go Destard Entrance
ON=0 Hythloth (entrance)
go Hythloth Entrance
ON=0 Shame (entrance)
go Shame Entrance
ON=0 Wrong (entrance)
go Wrong Entrance
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_SHRINE]
Shrines
ON=0 Chaos
go Chaos
ON=0 Compassion
go 1856 876 0
ON=0 Honesty
go Honesty
ON=0 Honor
go Honor
ON=0 Humility
go Humility
ON=0 Justice
go Justice
ON=0 Sacrifice
go Sacrifice
ON=0 Spirituality
go Spirituality
ON=0 Valor
go Valor
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_GRAVE]
Graveyards
ON=0 Britain
go Britain Graveyard
ON=0 Cove
go Cove Graveyard
ON=0 Jhelom
go Jhelom Cemetary
ON=0 Moonglow
go Moonglow Cemetary
ON=0 Nujel'm
go Nujel'm Cemetary
ON=0 Vesper
go Vesper Cemetary
ON=0 Yew
go Yew Graveyard
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_FORT]
Forts
ON=0 Cove Orc Fort
go Cove Orc Camp
ON=0 Yew Brigand Camp
go Yew Brigand Fort
ON=0 Yew Fort of the Damned
go Yew Crypts
ON=0 Yew Orc Fort
go Yew Orc Fort
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_SIGHTS]
Sightings
ON=0 Trapper's Camp
go Vesper Tanner's Huts
ON=0 Fisherman's Huts
go Fisherman's Hut
ON=0 Island Temple
go Temple Isle
ON=0 Hidden Valley Temple
go Hidden Valley Temple
ON=0 Inside Hedge Maze
go Hedge Maze
ON=0 Outside Hedge Maze
go Hedge Maze Entrance
ON=0 Crossroads NE of Britain
go Crossroads
ON=0 Ancient Ruins (Swamp North of Trinsic)
go Ancient Ruins
ON=0 Daemon Temple
go Daemon temple
ON=0 Jhelom Fighting Pit
go Jhelom Fighting Pits
ON=0 Great Waterfall
go Great Waterfall
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_MOON]
MoonGates
ON=0 Britain
go Britain Moongate
ON=0 Jhelom
go Jhelom Moongate
ON=0 Magincia
go Magincia Moongate
ON=0 Minoc/Vesper
go Minoc-Vesper Moongate
ON=0 Moonglow
go Moonglow Moongate
ON=0 Skara Brae
go Skara Brae Moongate
ON=0 Trinsic
go Trinsic Moongate
ON=0 Yew
go Yew Moongate
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_T2A]
T2A Locations
ON=0 Delucia
go Delucia
ON=0 Papua
go Papua
ON=0 Fire Dungeon
go Fire Dungeon Entrance
ON=0 Ice Dungeon
go Ice Dungeon Entrance
ON=0 Terathan Keep
go Terathan Keep
ON=0 Ophidian Lair
go Ophidian Lair
ON=0 Delucia Orc Fort
go Delucia Orc Fort
ON=0 City of the Dead
go City of the Dead
ON=0 Ruins in the Weeds
go Ruins in the Weeds
ON=0 Entrances & Exits to T2A
MENU M_TRAV_T2A_ENT
ON=0 PREVIOUS MENU
MENU M_TRAV
[MENU M_TRAV_T2A_ENT]
Entraces & Exits to T2A
ON=0 Britain Entrance
go 1497 1641 20
ON=0 Britain Exit
go 6032 1494 5
ON=0 Cove Entrance
go 2399 199 0
ON=0 Cove Exit
go 6088 3676 18
ON=0 Cove Entrance 2
go 1628 3322 0
ON=0 Cove Exit 2
go 5154 4063 37
ON=0 Serpent's Hold Entrance
go 2923 3407 8
ON=0 Serpent's Hold Exit
go 5687 1422 40
ON=0 Trinsic Entrance
go 1981 2070 0
ON=0 Trinsic Exit
go 5128 3144 99
ON=0 Trinsic Entrance 2
go 5900 1410 0
ON=0 Trinsic Exit 2
go 5961 1408 0
ON=0 Vesper Entrance
go 2778 894 0
ON=0 Vesper Exit
go 5697 3656 0
ON=0 PREVIOUS MENU
MENU M_TRAV_T2A
[MENU M_ADDI_VAL]
Valuables
ON=i_gold <NAME>
ADD i_gold
ON=i_ingot_gold <NAME>
ADD i_ingot_gold
ON=i_ingot_silver <NAME>
ADD i_ingot_silver
ON=i_ingot_copper Copper Ingots
ADD i_ingot_copper
ON=i_ingot_iron Iron Ingots
ADD i_ingot_iron
ON=i_virtstone_8 Gems
MENU M_ADDI_GEMS
ON=i_necklace_gold Jewelry
MENU M_ADDI_JEWELRY
[MENU M_ADDI_GEMS]
Gems
ON=i_gem_amethyst Amethyst
ADD i_gem_amethyst
ON=i_gem_citrine Citrine
ADD i_gem_citrine
ON=i_gem_diamond Diamond
ADD i_gem_diamond
ON=i_gem_emerald Emerald
ADD i_gem_emerald
ON=i_gem_amber Piece of Amber
ADD i_gem_amber
ON=i_gem_ruby Ruby
ADD i_gem_ruby
ON=i_gem_sapphire Saphire
ADD i_gem_sapphire
ON=i_gem_star_sapphire Star Saphire
ADD i_gem_star_sapphire
ON=i_gem_tourmaline Tourmaline
ADD i_gem_tourmaline
[MENU M_ADDN_NEW]
New Creatures
ON=0 Skeleton Archer
ADD c_SKELETONARCHER
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_OPHID]
T2A Creatures (Ophidian & Terathan)
ON=0 Ophidian Arch Mage
ADD c_OPHIDIAN_ARCHMAGE
ON=0 Ophidian Mage
ADD c_OPHIDIAN_MAGE
ON=0 Ophidian Knight
ADD c_OPHIDIAN_KNIGHT
ON=0 Ophidian Matriarch
ADD c_OPHIDIAN_QUEEN
ON=0 Ophidian Warrior
ADD c_OPHIDIAN_WARRIOR
ON=0 Terathan Avenger
ADD c_TERATHAN_AVENGER
ON=0 Terathan Drone
ADD c_TERATHAN_DRONE
ON=0 Terathan Matriarch
ADD c_TERATHAN_MATRIARCH
ON=0 Terathan Warrior
ADD c_TERATHAN_WARRIOR
ON=0 PREVIOUS MENU
MENU M_ADDN_T2A
[MENU M_ADDN]
NPCs
ON=0 Males
MENU M_ADDN_MAL
ON=0 Females
MENU M_ADDN_FEM
ON=0 Wild Animals
MENU M_ADDN_WILD
ON=0 Domestic Animals
MENU M_ADDN_DOM
ON=0 Living Creatures
MENU M_ADDN_LIV
ON=0 Undead Creatures
MENU M_ADDN_UND
ON=0 Mythical Creatures
MENU M_ADDN_MYTH
ON=0 New Creatures
MENU M_ADDN_NEW
ON=0 T2A Creatures
MENU M_ADDN_T2A
ON=0 PREVIOUS MENU
MENU MENU_ADDITEM
[MENU M_ADDN_MAL]
Male NPCs
ON=0 Shopkeepers
MENU M_ADDN_MSHOP
ON=0 Town Based
MENU M_ADDN_MTOWN
ON=0 Wilderness & Town Based
MENU M_ADDN_MWILD
ON=0 Fighters & Guards
MENU M_ADDN_MFIGHT
ON=0 Evil (Player Killers)
MENU M_ADDN_MEVIL
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_FEM]
Female NPCs
ON=0 Shopkeepers
MENU M_ADDN_FSHOP
ON=0 Town Based
MENU M_ADDN_FTOWN
ON=0 Wilderness & Town Based
MENU M_ADDN_FWILD
ON=0 Fighters & Guards
MENU M_ADDN_FFIGHT
ON=0 Evil (Player Killers)
MENU M_ADDN_FEVIL
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_WILD]
Wild Animals
ON=0 Forest
MENU M_ADDN_WILD_FOR
ON=0 Swamp
MENU M_ADDN_WILD_SWAMP
ON=0 Northern
MENU M_ADDN_WILD_NOR
ON=0 Sea
MENU M_ADDN_WILD_SEA
ON=0 Flying
MENU M_ADDN_WILD_FLY
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_DOM]
Domestic Animals
ON=0 Horse (brown)
ADD c_horse_brown_dk
ON=0 Horse (pale)
ADD c_horse_brown_lt
ON=0 Horse (white)
ADD c_horse_gray
ON=0 Horse (tan)
ADD c_horse_tan
ON=0 Pack Horse
ADD c_HORSE_PACK
ON=0 Llama
ADD c_llama
ON=0 Pack Llama
ADD c_LLAMA_PACK
ON=0 Cow (light brown)
ADD c_cow_brown
ON=0 Cow (black & white)
ADD c_cow_bw
ON=0 Bull (light brown)
ADD c_bull_brown_lt
ON=0 Bull (dark brown, spotted)
ADD c_bull_brown_dk
ON=0 Pig
ADD c_PIG
ON=0 Sheep (wooly)
ADD c_SHEEP_WOOLLY
ON=0 Goat
ADD c_GOAT
ON=0 Cat
ADD c_cat
ON=0 Dog
ADD c_dog
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_LIV]
Living Creatures
ON=0 Corpser
ADD c_corpser
ON=0 Harpy
ADD c_harpy
ON=0 Mongbat (subterranean)
ADD c_mongbat
ON=0 Mongbat (arboreal)
ADD c_MONGBAT_ARBOREAL
ON=0 Ogre
ADD c_OGRE
ON=0 Ogre Lord
ADD c_ogre_lord
ON=0 Ettin, Lizmen, Orc, Ratmen, Troll
MENU M_ADDN_ETTIN
ON=0 Reaper
ADD c_reaper
ON=0 Slime
ADD c_slime
ON=0 Giant Scorpion
ADD c_scorpion_giant
ON=0 Giant Spider
ADD c_spider_giant
ON=0 Giant Serpent
ADD c_snake_giant
ON=0 Giant Rat
ADD c_rat_giant
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_UND]
Undead Creatures
ON=0 Spectre
ADD c_SPECTRE
ON=0 Headless
ADD c_Headless
ON=0 Lich
ADD c_lich
ON=0 Lich Lord
ADD c_lich_lord
ON=0 Skeleton
ADD c_skeleton
ON=0 Skeleton (with axe)
ADD c_skeleton_w_axe
ON=0 Skeleton (with sword)
ADD c_skeleton_w_sword
ON=0 Skeletal Knight
ADD c_skeleton_knight
ON=0 Skeletal Mage
ADD c_skeleton_mage
ON=0 Zombie
ADD c_ZOMBIE
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_MYTH]
Mythical Creatures
ON=0 Air Elemental
ADD c_elem_AIR
ON=0 Earth Elemental
ADD c_elem_earth
ON=0 Fire Elemental
ADD c_elem_fire
ON=0 Water Elemental
ADD c_elem_water
ON=0 Wisp
ADD c_WISP
ON=0 Dragon (red)
ADD c_DRAGON_RED
ON=0 Dragon (green)
ADD c_DRAGON_GREEN
ON=0 Drake (red)
ADD c_DRAGON_SMALL_RED
ON=0 Drake (Black)
ADD c_DRAGON_SMALL_BLACK
ON=0 Daemon
ADD c_DAEMON
ON=0 Balron (Elder Daemon)
ADD c_balron
ON=0 Daemon (with sword)
ADD c_DAEMON_W_SWORD
ON=0 Gargoyle
ADD c_GARGOYLE
ON=0 Gazer
ADD c_gazer
ON=0 Elder Gazer
ADD c_gazer_elder
ON=0 Sea Serpent
ADD c_SEA_SERPENT
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_T2A]
T2A Creatures
ON=0 Bullfrog
ADD c_bullfrog
ON=0 Cyclops
ADD c_CYCLOPS
ON=0 Frost Troll
ADD c_frost_troll
ON=0 Giant Ice Serpent
ADD c_ICE_SERPENT
ON=0 Imp
ADD c_imp
ON=0 Kraken
ADD c_KRAKEN
ON=0 Lava Lizard
ADD c_lava_lizard
ON=0 Mummy
ADD c_MUMMY
ON=0 Nightmare
ADD c_NIGHTMARE
ON=0 Phoenix
ADD c_PHOENIX
ON=0 Stone Gargoyle
ADD c_gargoyle_stone
ON=0 Stone Harpy
ADD c_stoneharpy
ON=0 Giant Toad
ADD c_TOAD_GIANT
ON=0 Titan
ADD c_TITAN
ON=0 Wyrm & Wyvern
MENU M_ADDN_WYRM
ON=0 Ophidian's & Terathan's
MENU M_ADDN_OPHID
ON=0 Ice Creatures & Ostards
MENU M_ADDN_T2A_ICE
ON=0 PREVIOUS MENU
MENU M_ADDN
[MENU M_ADDN_ETTIN]
Ettin, Lizmen, Orc, Ratmen, Troll
ON=0 Ettin
ADD c_ettin
ON=0 Ettin (with axe)
ADD c_ETTIN_W_AXE
ON=0 Lizardman
ADD c_lizardman
ON=0 Lizardman (with spear)
ADD c_lizardman_spear
ON=0 Lizzardman (with mace)
ADD c_lizardman_mace
ON=0 Orc
ADD c_ORC
ON=0 Orc (with club)
ADD c_orc_w_club
ON=0 Orcish Mage
ADD c_orc_mage
ON=0 Orc Captian
ADD c_orc_captain
ON=0 Orc Lord
ADD c_orc_lord
ON=0 Ratman
ADD c_ratman
ON=0 Ratman (with warfork)
ADD c_ratman_w_mace
ON=0 Ratman (with sword)
ADD c_ratman_w_sword
ON=0 Troll
ADD c_troll
ON=0 Troll (with mace)
ADD c_troll_w_mace
ON=0 Troll (with axe)
ADD c_troll_w_axe
ON=0 PREVIOUS MENU
MENU M_ADDN_LIV
[MENU M_ADDN_MSHOP]
Male Shopkeepers
ON=0 Food
MENU M_ADDN_MSHOPFOO
ON=0 Clothing
MENU M_ADDN_MSHOPCLO
ON=0 Combat
MENU M_ADDN_MSHOPCOM
ON=0 Magery
MENU M_ADDN_MSHOPMAG
ON=0 Equipment
MENU M_ADDN_MSHOPEQ
ON=0 Other
MENU M_ADDN_MSHOPO
ON=0 PREVIOUS MENU
MENU M_ADDN_MAL
[MENU M_ADDN_MSHOPFOO]
Male Shopkeepers (food)
ON=0 Butcher
ADD C_H_BUTCHER
ON=0 Baker
ADD C_H_BAKER
ON=0 Farmer
ADD C_H_FARMER
ON=0 Innkeeper