-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSPHEREMenu.scp
5304 lines (5106 loc) · 76 KB
/
SPHEREMenu.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-2000
//www.sphereserver.com
// 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: Friday, April 28, 2000
//
// All menus in the game.
// GM, Items, locations and Gumps
[ADMIN 1]
SPHERE Client Control Menu
ON=GO: Go to the client's location.
GOTARG //You are now going to the client.
ON=SUMMONTO: Bring that client to you
T.SUMMONTO //The client is summoned
ON=SUMMONCAGE: Bring that client to you, in a cage.
T.SUMMONCAGE //The client is summoned and in the cage
ON=JAIL: Send the client to jail.
T.JAIL //The client is in jail
ON=KICK: Kick the client off the server.
T.KICK //The client is kicked off the server
ON=KILL: Kill the client's current character.
T.KILL // The client is dead
ON=RESURRECT: Resurrect the client's character.
T.RESURRECT //The client is now alive
ON=FOLLOW: Follow this character.
T.FOLLOWED //This might be tricky
ON=MESSAGETARG: Send a message
EVERBTARG HEAR
ON=EVERBTARG: Enter any verb on this target.
EVERBTARG
// GMMENU -------------------------------------
[GMMENU 1] // GMMENU 1 is executed whenever someone presses the "Page GM" button
SPHERE Main Support Menu
ON=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.
GMMENU 3
ON=WEB MENU: Provides a list of links to various websites.
GMMENU 2
ON=INFO: Shows the version of SPHERE this server is running.
VERSION
ON=SERVER STATUS: Shows some status information about this server.
INFORMATION
ON=GO TO THE HELP ROOM: This will teleport you to the The Abyss.
GMMENU 4
[GMMENU 2]
Web Menu
ON=SPHERE HOMEPAGE: Redirects you to the official SPHERE homepage.
WEBLINK http:\\www.sphereserver.com
[GMMENU 3]
GM Page Menu
ON=STUCK: Use this option if you cant move and need GM assistance.
GMPAGE Stuck
ON=ITEM PROBLEM: Use this if you have run into a problem with a specific item.
GMPAGE Item Problem
ON=BUG: Use this if you have found a bug that you would like to report to the GMs.
GMPAGE Bug Report
ON=INFO: Use this if you need helping information about some part of the game.
GMPAGE Information
ON=OTHER: Use this for anything not listed above.
GMPAGE Other
[GMMENU 4]
Are you sure you want to be teleported to The Abyss? You will be stuck there until a GM teleports you back to the world.
ON=YES, down we go!
SYSMESSAGE This Feature Has Been Removed Due To Abuse By PLayers!!!
//GOPLACE The Abyss
ON=NO, I'd rather stay here.
SYSMESSAGE Help request aborted.
// This is the guildmaster initial selection screen for guildstones
[GUILDMENU 1]
<TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=Recruit someone into the guild
TARG.RECRUIT
ON=View the current roster.
TARG.VIEWROSTER
ON=View the guild's charter.
TARG.VIEWCHARTER
ON=Declare your fealty. You are currently loyal to <TARG.LoyalTo>.
TARG.DECLAREFEALTY
ON=Toggle showing the guild's abbreviation in your name to unguilded people. Currently <TARG.AbbreviationToggle>.
TARG.TOGGLEABBREVIATION
ON=Resign from the guild.
TARG.RESIGN
ON=View list of candidates who have been sponsored to the guild.
TARG.VIEWCANDIDATES
ON=View list of guilds that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of guilds that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
ON=Access Guild <TARG.MasterGenderTitle> functions.
TARG.MASTERMENU
// This is the NON-guildmaster initial selection screen for guildstones
[GUILDMENU 2]
<TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=Recruit someone into the guild
TARG.RECRUIT
ON=View the current roster.
TARG.VIEWROSTER
ON=View the guild's charter.
TARG.VIEWCHARTER
ON=Declare your fealty. You are currently loyal to <TARG.LoyalTo>.
TARG.DECLAREFEALTY
ON=Toggle showing the guild's abbreviation in your name to unguilded people. Currently <TARG.AbbreviationToggle>.
TARG.TOGGLEABBREVIATION
ON=Resign from the guild.
TARG.RESIGN
ON=View list of candidates who have been sponsored to the guild.
TARG.VIEWCANDIDATES
ON=View list of guilds that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of guilds that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
// Guild master functions.
[GUILDMENU 3]
<TARG.Name>, Guild <TARG.MasterGenderTitle> functions
ON=Set the guild name.
TARG.SETNAME
ON=Set the guilds abbreviation.
TARG.SETABBREVIATION
ON=Change the alignment of guild. (currently a <TARG.AlignType> guild.)
TARG.CHANGEALIGN
ON=Set the guild's charter.
TARG.SETCHARTER
ON=Dismiss a member.
TARG.DISMISSMEMBER
ON=Declare war.
TARG.DECLAREWAR
ON=Declare peace.
TARG.DECLAREPEACE
ON=Accept a candidate seeking membership.
TARG.ACCEPTCANDIDATE
ON=Refuse a candidate seeking membership.
TARG.REFUSECANDIDATE
ON=Set the guildmaster's title.
TARG.SETGMTITLE
ON=Grant a title to another member.
TARG.GRANTTITLE
//Teleport this guildstone.
//TARG.TELEPORT
ON=Return to main menu.
TARG.RETURNMAINMENU
// Non-member view.
[GUILDMENU 4]
<TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=View the guild's charter.
TARG.VIEWCHARTER
ON=View list of guilds that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of guilds that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
[GUILDMENU 5]
Change the alignment of guild. (currently a <TARG.AlignType> guild.)
ON=Chaos
TARG.CHANGEALIGN 2
ON=Neutral
TARG.CHANGEALIGN 0
ON=Order
TARG.CHANGEALIGN 1
// Town stones. mayor view
[GUILDMENU 6]
Town of <TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=View the current citizenship.
TARG.VIEWROSTER
ON=View the town's charter.
TARG.VIEWCHARTER
ON=Vote for mayor. You are currently loyal to <TARG.LoyalTo>.
TARG.DECLAREFEALTY
ON=Resign from the town.
TARG.RESIGN
//ON=View list of those banished from the town.
//TARG.VIEWBANISHED
ON=View list of those applying for citizenship.
TARG.VIEWCANDIDATES
ON=View list of towns that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of towns that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
ON=Access Mayoral functions.
TARG.MASTERMENU
// This is the member, NON-mayor townstones
[GUILDMENU 7]
Town of <TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=View the current citizenship.
TARG.VIEWROSTER
ON=View the town's charter.
TARG.VIEWCHARTER
ON=Vote for mayor. You are currently loyal to <TARG.LoyalTo>.
TARG.DECLAREFEALTY
ON=Resign from the town.
TARG.RESIGN
//ON=View list of those banished from the town.
//TARG.VIEWBANISHED
ON=View list of those applying for citizenship.
TARG.VIEWCANDIDATES
ON=View list of towns that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of towns that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
// Mayor functions.
[GUILDMENU 8]
Town of <TARG.Name>, Mayoral functions
ON=Set the town name.
TARG.SETNAME
ON=Set the town's charter.
TARG.SETCHARTER
ON=Banish a citizen.
TARG.DISMISSMEMBER
ON=Declare war.
TARG.DECLAREWAR
ON=Declare peace.
TARG.DECLAREPEACE
ON=Accept a person seeking citizenship.
TARG.ACCEPTCANDIDATE
ON=Refuse a person seeking citizenship.
TARG.REFUSECANDIDATE
ON=Set the mayors's title.
TARG.SETGMTITLE
ON=Grant a title to a citizen.
TARG.GRANTTITLE
ON=Return to main menu.
TARG.RETURNMAINMENU
// Non-member view.
[GUILDMENU 9]
Town of <TARG.Name> (<TARG.MasterTitle> <TARG.Master>)
ON=View the towns's charter.
TARG.VIEWCHARTER
ON=View list of towns that <TARG.Name> has declared war on.
TARG.VIEWENEMYS
ON=View list of towns that have declared war on <TARG.Name>.
TARG.VIEWTHREATS
ON=Apply for citizenship
TARG.APPLYTOJOIN
// ITEMMENUS SECTION -------------------------------------
// Main start menu, used when /add with no parms are passed
[ITEMMENU 1]
SPHERE Main GM Menu
ON=0 GameMaster Features
ITEMMENU 2
ON=0 Valuables
ITEMMENU 16
ON=0 NPCs
ITEMMENU 20
ON=0 Magic Items
ITEMMENU 70
ON=0 Tools & Trades
ITEMMENU 82
ON=0 Raw Materials
ITEMMENU 93
ON=0 Potions & Flasks
ITEMMENU 275
ON=0 Scattered Materials
ITEMMENU 94
ON=0 Weapons & Armor
ITEMMENU 100
ON=0 Magic Weapons & Armor
ITEMMENU 120
ON=0 Equipment & Items
ITEMMENU 130
ON=0 Clothing
ITEMMENU 170
ON=0 Banners & Signs
ITEMMENU 180
ON=0 Food
ITEMMENU 200
ON=0 Plants
ITEMMENU 220
ON=0 Rocks, Stones, Boulders
ITEMMENU 270
ON=0 Structures
ITEMMENU 250
// GM Features and Travel Places Menus
[ITEMMENU 2]
GameMaster Features
ON=0 Items
ITEMMENU 3
ON=0 Travel to Places
ITEMMENU 4
ON=0 Hair & Beards
ITEMMENU 274
ON=0 House Deeds
ITEMMENU 269
ON=0 PREVIOUS MENU
ITEMMENU 1
[ITEMMENU 3]
GameMaster Items
ON=0 GM Robe (undyed)
ADDITEM 204F
ON=0 Master Key
ADDITEM 1012
ON=0 Teleport Rune
ADDITEM 0E5E
ON=0 Lord British Armor
ADDITEM 2042
ON=0 Blackthorne Robe
ADDITEM 2043
ON=0 Death Shroud
ADDITEM 204E
ON=0 PREVIOUS MENU
ITEMMENU 2
[ITEMMENU 4]
Travel to Places
ON=0 Special GM Areas
ITEMMENU 5
ON=0 Towns
ITEMMENU 6
ON=0 Councelor Halls
ITEMMENU 7
ON=0 Dungeons
ITEMMENU 8
ON=0 Shrines
ITEMMENU 9
ON=0 Graveyards
ITEMMENU 10
ON=0 Forts
ITEMMENU 11
ON=0 Sightings
ITEMMENU 12
ON=0 MoonGates
ITEMMENU 13
ON=0 T2A Locations
ITEMMENU 14
ON=0 PREVIOUS MENU
ITEMMENU 2
[ITEMMENU 5]
Special GM Areas
ON=0 Jail #1
GO 5276 1164 0
ON=0 Jail #2
GO 5286 1164 0
ON=0 Jail #3
GO 5296 1164 0
ON=0 Jail #4
GO 5306 1164 0
ON=0 Jail #5
GO 5276 1174 0
ON=0 Jail #6
GO 5286 1174 0
ON=0 Jail #7
GO 5296 1174 0
ON=0 Jail #8
GO 5306 1174 0
ON=0 Jail #9
GO 5283 1184 0
ON=0 Jail #10
GO 5304 1184 0
ON=0 Green Acres
GO 5539 1102 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 6]
Towns
ON=0 Britain (center)
go 1475 1645 20
ON=0 Bucaneer's Den (docks)
go 2736 2166 0
ON=0 Cove (center)
go 2246 1214 0
ON=0 Jhelom (docks)
go 1485 3695 0
ON=0 Minoc (center)
go 2466 443 15
ON=0 Moonglow (bank)
go 4471 1178 0
ON=0 Nujel'm (center)
go 3755 1243 0
ON=0 Occlo (smithy)
go 3642 2595 0
ON=0 Serpents Hold (center)
go 3021 3397 15
ON=0 Skara Brae (provisioner)
go 584 2227 0
ON=0 Trinsic (center)
go 1956 2780 10
ON=0 Vesper (mage shop)
go 3000 835 0
ON=0 Wind (entrance)
go 5166 245 15
ON=0 Yew (empath abby)
go 635 818 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 7]
Councelor Halls
ON=0 Moonglow
go 4479 1126 0
ON=0 Skara Brae
go 619 2131 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 8]
Dungeons
ON=0 Covetous (entrance)
go 2499 922 0
ON=0 Deceit (entrance)
go 4111 434 5
ON=0 Despise (entrance)
go 1301 1080 0
ON=0 Destard (entrance)
go 1176 2639 0
ON=0 Hythloth (entrance)
go 4722 3825 0
ON=0 Shame (entrance)
go 514 1561 0
ON=0 Wrong (entrance)
go 1276 238 10
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 9]
Shrines
ON=0 Chaos
go 1453 854 0
ON=0 Compassion
go 1856 876 0
ON=0 Honesty
go 4216 563 0
ON=0 Honor
go 1729 3527 0
ON=0 Humility
go 4274 3699 0
ON=0 Justice
go 1301 632 16
ON=0 Sacrifice
go 3354 287 0
ON=0 Spirituality
go 1601 2488 0
ON=0 Valor
go 2493 3928 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 10]
Graveyards
ON=0 Britain
go 1348 1500 20
ON=0 Cove
go 2442 1086 28
ON=0 Moonglow
go 4548 1307 0
ON=0 Vesper
go 2782 867 0
ON=0 Yew
go 724 1136 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 11]
Forts
ON=0 Cove Orc Fort
go 2171 1332 0
ON=0 Yew Brigand Camp
go 885 1682 0
ON=0 Yew Fort of the Damned
go 972 768 0
ON=0 Yew Orc Fort
go 634 1500 0
ON=0 PREVIOUS MENU
TEMMENU 4
[ITEMMENU 12]
Sightings
ON=0 Trapper's Camp
go 3347 572 0
ON=0 Fisherman's Huts
go 2381 3485 3
ON=0 Island Temple
go 2494 3603 0
ON=0 Hidden Valley Temple
go 1659 2967 0
ON=0 Inside Hedge Maze
go 1152 2228 17
ON=0 Outside Hedge Maze
go 1260 2301 0
ON=0 Crossroads West of Britain
go 1012 1937 0
ON=0 Ancient Ruins (Swamp North of Trinsic)
go 1814 2421 0
ON=0 Temple of Fire
go 4595 3600 30
ON=0 Fighting Pit
go 1397 3745 235
ON=0 Great Waterfall
go 1322 544 30
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 13]
MoonGates
ON=0 Britain
go 1338 1991 0
ON=0 Jhelom
go 1502 3769 0
ON=0 Magincia
go 3567 2138 28
ON=0 Minoc/Vesper
go 2705 691 0
ON=0 Moonglow
go 4470 1281 0
ON=0 Skara Brae
go 647 2067 0
ON=0 Trinsic
go 1826 2944 231
ON=0 Yew
go 769 747 0
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 14]
T2A Locations
ON=0 Delucia (bank)
go 5270 3993 37
ON=0 Papua (entrace)
go 5745 3311 -3
ON=0 Fire Dungeon (entrance)
go 5760 2907 16
ON=0 Ice Dungeon (entrance)
go 1999 81 4
ON=0 Terathan Keep (entrance)
go 5451 3140 196
ON=0 Ophidian Keep (level 1)
go 5767 2633 0
ON=0 Delucia Orc Fort
go 5211 3630 0
ON=0 City of the Dead
go 5213 3667 0
ON=0 Ruins in the Weeds
go 5389 3233 0
ON=0 Entraces & Exits to T2A
ITEMMENU 15
ON=0 PREVIOUS MENU
ITEMMENU 4
[ITEMMENU 15]
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
ITEMMENU 14
[ITEMMENU 16]
Valuables
ON=0EEF Gold Coins
ADDITEM 0EEF
ON=01BEB Gold Ingots
ADDITEM 1BE9
ON=01BF7 Silver Ingots
ADDITEM 1BF5
ON=01BE5 Coper Ingots
ADDITEM 1BE3
ON=01BF1 Iron Ingots
ADDITEM 1BEF
ON=01870 Gems
ITEMMENU 17
ON=01088 Jewelery
ITEMMENU 67
[ITEMMENU 17]
Gems
ON=0F2E Amethyst
ADDITEM 0F2E
ON=0F2C Citrine
ADDITEM 0F2C
ON=0F30 Diamond
ADDITEM 0F30
ON=0F10 Emerald
ADDITEM 0F10
ON=0F25 Piece of Amber
ADDITEM 0F25
ON=0F14 Ruby
ADDITEM 0F14
ON=0F1F Saphire
ADDITEM 0F1F
ON=0F21 Star Saphire
ADDITEM 0F21
ON=0F2D Tourmaline
ADDITEM 0F2D
[ITEMMENU 18]
New GW Creatures
ON=0 Skeleton Archer
ADDNPC 0900
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 19]
T2A Creatures (Ophidian & Terathan)
ON=0 Ophidian Arch Mage
ADDNPC 1044
ON=0 Ophidian Mage
ADDNPC 0055
ON=0 Ophidian Knight
ADDNPC 1048
ON=0 Ophidian Matriarch
ADDNPC 0057
ON=0 Ophidian Warrior
ADDNPC 0056
ON=0 Terathan Avenger
ADDNPC 1055
ON=0 Terathan Drone
ADDNPC 0047
ON=0 Terathan Matriarch
ADDNPC 0048
ON=0 Terathan Warrior
ADDNPC 0046
ON=0 PREVIOUS MENU
ITEMMENU 28
[ITEMMENU 20]
NPCs
ON=0 Males
ITEMMENU 21
ON=0 Females
ITEMMENU 22
ON=0 Wild Animals
ITEMMENU 23
ON=0 Domestic Animals
ITEMMENU 24
ON=0 Living Creatures
ITEMMENU 25
ON=0 Undead Creatures
ITEMMENU 26
ON=0 Mythical Creatures
ITEMMENU 27
ON=0 New GW Creatures
ITEMMENU 18
ON=0 T2A Creatures
ITEMMENU 28
ON=0 PREVIOUS MENU
ITEMMENU 1
[ITEMMENU 21]
Male NPCs
ON=0 Shopkeepers
ITEMMENU 30
ON=0 Town Based
ITEMMENU 40
ON=0 Wilderness & Town Based
ITEMMENU 41
ON=0 Fighters & Guards
ITEMMENU 42
ON=0 Evil (Player Killers)
ITEMMENU 43
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 22]
Female NPCs
ON=0 Shopkeepers
ITEMMENU 45
ON=0 Town Based
ITEMMENU 52
ON=0 Wilderness & Town Based
ITEMMENU 53
ON=0 Fighters & Guards
ITEMMENU 54
ON=0 Evil (Player Killers)
ITEMMENU 55
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 23]
Wild Animals
ON=0 Forest
ITEMMENU 60
ON=0 Swamp
ITEMMENU 61
ON=0 Northern
ITEMMENU 62
ON=0 Sea
ITEMMENU 63
ON=0 Flying
ITEMMENU 64
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 24]
Domestic Animals
ON=0 Horse (brown)
ADDNPC 00CC
ON=0 Horse (pale)
ADDNPC 00E4
ON=0 Horse (white)
ADDNPC 00E2
ON=0 Horse (tan)
ADDNPC 00C8
ON=0 Pack Horse
ADDNPC 0123
ON=0 Llama
ADDNPC 00dc
ON=0 Pack Llama
ADDNPC 0124
ON=0 Cow (light brown)
ADDNPC 00e7
ON=0 Cow (black & white)
ADDNPC 00d8
ON=0 Bull (light brown)
ADDNPC 00e8
ON=0 Bull (dark brown, spotted)
ADDNPC 00e9
ON=0 Pig
ADDNPC 00CB
ON=0 Sheep (wooly)
ADDNPC 00CF
ON=0 Goat
ADDNPC 00d1
ON=0 Cat
ADDNPC 00c9
ON=0 Dog
ADDNPC 00D9
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 25]
Living Creatures
ON=0 Copser
ADDNPC 0008
ON=0 Harpy
ADDNPC 001e
ON=0 Mongbat (subterranean)
ADDNPC 0027
ON=0 Mongbat (arboreal)
ADDNPC 1021
ON=0 Ogre
ADDNPC 0001
ON=0 Ogre Lord
ADDNPC 1040
ON=0 Ettin, Lizmen, Orc, Ratmen, Troll
ITEMMENU 29
ON=0 Reaper
ADDNPC 002f
ON=0 Slime
ADDNPC 0033
ON=0 Giant Scorpion
ADDNPC 0030
ON=0 Giant Spider
ADDNPC 001c
ON=0 Giant Serpent
ADDNPC 0015
ON=0 Giant Rat
ADDNPC 00D7
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 26]
Undead Creatures
ON=0 Spectre
ADDNPC 001a
ON=0 Headless
ADDNPC 001f
ON=0 Liche
ADDNPC 0018
ON=0 Liche Lord
ADDNPC 1041
ON=0 Skeleton
ADDNPC 0032
ON=0 Skeleton (with axe)
ADDNPC 0038
ON=0 Skeleton (with sword)
ADDNPC 0039
ON=0 Skeletal Knight
ADDNPC 1047
ON=0 Skeletal Mage
ADDNPC 1046
ON=0 Zombie
ADDNPC 0003
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 27]
Mythical Creatures
ON=0 Air Elemental
ADDNPC 000d
ON=0 Earth Elemental
ADDNPC 000e
ON=0 Fire Elemental
ADDNPC 000f
ON=0 Water Elemental
ADDNPC 0010
ON=0 Wisp
ADDNPC 003a
ON=0 Dragon (red)
ADDNPC 003b
ON=0 Dragon (grey)
ADDNPC 000c
ON=0 Drake (red)
ADDNPC 003d
ON=0 Drake (grey)
ADDNPC 003c
ON=0 Daemon
ADDNPC 0009
ON=0 Balron (Elder Daemon)
ADDNPC 1028
ON=0 Daemon (with sword)
ADDNPC 000A
ON=0 Gargoyle
ADDNPC 0004
ON=0 Gazer
ADDNPC 0016
ON=0 Elder Gazer
ADDNPC 1034
ON=0 Sea Serpent
ADDNPC 0096
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 28]
T2A Creatures
ON=0 Bullfrog
ADDNPC 0051
ON=0 Cyclops
ADDNPC 004c
ON=0 Frost Troll
ADDNPC 1054
ON=0 Giant Ice Serpent
ADDNPC 1049
ON=0 Imp
ADDNPC 1023
ON=0 Kraken
ADDNPC 1024
ON=0 Lava Lizard
ADDNPC CE
ON=0 Mummy
ADDNPC 1022
ON=0 Nightmare
ADDNPC 1039
ON=0 Phoenix
ADDNPC 1042
ON=0 Stone Gargoyle
ADDNPC 1033
ON=0 Stone Harpy
ADDNPC 1020
ON=0 Giant Toad
ADDNPC 50
ON=0 Titan
ADDNPC 004b
ON=0 Wyrm & Wyvern
ITEMMENU 66
ON=0 Ophidian's & Terathan's
ITEMMENU 19
ON=0 Ice Creatures & Ostards
ITEMMENU 65
ON=0 PREVIOUS MENU
ITEMMENU 20
[ITEMMENU 29]
Ettin, Lizmen, Orc, Ratmen, Troll
ON=0 Ettin
ADDNPC 0002
ON=0 Ettin (with axe)
ADDNPC 0012
ON=0 Lizardman
ADDNPC 0021
ON=0 Lizardman (with spear)
ADDNPC 0023
ON=0 Lizzardman (with mace)
ADDNPC 0024
ON=0 Orc
ADDNPC 0011
ON=0 Orc (with club)
ADDNPC 0029
ON=0 Orcish Mage
ADDNPC 1058
ON=0 Orc Captian
ADDNPC 1057
ON=0 Orc Lord
ADDNPC 0007
ON=0 Ratman
ADDNPC 002a
ON=0 Ratman (with warfork)
ADDNPC 002c
ON=0 Ratman (with sword)
ADDNPC 002d
ON=0 Troll
ADDNPC 0036
ON=0 Troll (with mace)
ADDNPC 0037
ON=0 Troll (with axe)
ADDNPC 0035
ON=0 PREVIOUS MENU
ITEMMENU 25
[ITEMMENU 30]
Male Shopkeepers
ON=0 Food
ITEMMENU 31
ON=0 Clothing
ITEMMENU 32
ON=0 Combat
ITEMMENU 33
ON=0 Magery
ITEMMENU 34
ON=0 Equipment
ITEMMENU 35
ON=0 Other
ITEMMENU 36
ON=0 PREVIOUS MENU
ITEMMENU 21
[ITEMMENU 31]
Male Shopkeepers (food)
ON=0 Butcher
ADDNPC 0424
ON=0 Baker
ADDNPC 0416
ON=0 Farmer
ADDNPC 0430
ON=0 Innkeeper
ADDNPC 0532
ON=0 Cook
ADDNPC 0500
ON=0 Waiter
ADDNPC 0488
ON=0 Miller
ADDNPC 0454
ON=0 Beekeeper
ADDNPC 0420
ON=0 Tavernkeeper
ADDNPC 0538
[ITEMMENU 32]
Male Shopkeepers (cloths)
ON=0 Cobbler
ADDNPC 0428
ON=0 Tailor
ADDNPC 0506
ON=0 Tanner
ADDNPC 0482
ON=0 Weaver
ADDNPC 0502
ON=0 Fur Trader
ADDNPC 0432
[ITEMMENU 33]
Male Shopkeepers (Combat)
ON=0 Blacksmith
ADDNPC 0556
ON=0 Weaponsmith (bladed)
ADDNPC 0576
ON=0 Weaponsmith (blunt)
ADDNPC 0578
ON=0 Armourer
ADDNPC 0554
ON=0 Bowyer
ADDNPC 0546