diff --git a/lib/text/help/help.hlp b/lib/text/help/help.hlp index 89f33e8..4a6f342 100644 --- a/lib/text/help/help.hlp +++ b/lib/text/help/help.hlp @@ -870,15 +870,6 @@ autoquests scattered throughout the World. See Also: QUEST-FLAG, QUESTPOINTS #0 -AUTOSACRIFICE SACRIFICE - -Usage: toggle autosac - - Enables you to automatically sacrifice any mob you kill. If you do not have -autoloot enabled the objects and gold will also be sacrificed. - -See Also: TOGGLE -#0 AUTOSPLIT Usage: toggle autosplit @@ -2550,20 +2541,6 @@ Modify your prompt to show your hit points, mana, and/or movement points. prompt if the values drop below 30% of max. See also: TOGGLE #0 -DONATE - -Usage: donate - donate coins - -This command takes an object that you no longer want and deposits it in one of -the MUDs donation rooms. - - > donate shield - > donate all.bread - > donate 500 coins - -See also: JUNK, GET -#0 DROP THROWN Usage: drop @@ -2578,7 +2555,7 @@ If you lose interest in a carried item, you can drop it on the ground. > drop all > drop 1000 coins -See also: DONATE, GET, JUNK +See also: GET, JUNK #0 DRUNK WINE LIQUID-CONTAINERS BEER SPIRITS DRINK-TYPES LIQUOR WHISKEY WHISKY LIQUIDS LIQ-CONTAINERS @@ -4156,7 +4133,7 @@ Examples: > junk all.bronze > junk 500 coins -See also: DONATE, DROP +See also: DROP #0 KEY-BASICS KEYS-BASICS OEDIT-KEYS @@ -5735,7 +5712,7 @@ INVENTORY EQUIPMENT - Inventory is carried, equipment is worn. GRAB HOLD WIELD WEAR REMOVE - Different ways of using equipment. EXAMINE LOOK - More or less like a 'look in object' EAT TASTE DRINK SIP POUR FILL - All living creatures must eat and drink. -JUNK DONATE - Get rid of an object. +JUNK - Get rid of an object. USE RECITE QUAFF - For wands, scrolls and potions. SPLIT - For dividing gold between party members. DEPOSIT WITHDRAW BALANCE - Used to communicate in banks. @@ -7108,7 +7085,7 @@ Level : Cleric level 8. The meaning of this spell is not yet fully defined. #0 -PURGE DESTROY SACRIFICE UNLOAD DELETE-MOBILE DISINTEGRATE DECOMPOSE CLEANUP +PURGE DESTROY UNLOAD DELETE-MOBILE DISINTEGRATE DECOMPOSE CLEANUP Usage: purge [target] diff --git a/src/interpreter.c b/src/interpreter.c index 19cb184..95f4164 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -98,7 +98,6 @@ cpp_extern const struct command_info cmd_info[] = { { "autokey" , "autokey" , POS_DEAD , do_gen_tog , 0, SCMD_AUTOKEY }, { "autoloot" , "autoloot", POS_DEAD , do_gen_tog , 0, SCMD_AUTOLOOT }, { "automap" , "automap" , POS_DEAD , do_gen_tog , 0, SCMD_AUTOMAP }, - { "autosac" , "autosac" , POS_DEAD , do_gen_tog , 0, SCMD_AUTOSAC }, { "autosplit", "autospl" , POS_DEAD , do_gen_tog , 0, SCMD_AUTOSPLIT }, { "backstab" , "ba" , POS_STANDING, do_backstab , 1, 0 }, @@ -132,7 +131,6 @@ cpp_extern const struct command_info cmd_info[] = { { "diagnose" , "diag" , POS_RESTING , do_diagnose , 0, 0 }, { "dig" , "dig" , POS_DEAD , do_dig , LVL_BUILDER, 0 }, { "display" , "disp" , POS_DEAD , do_display , 0, 0 }, - { "donate" , "don" , POS_RESTING , do_drop , 0, SCMD_DONATE }, { "drink" , "dri" , POS_RESTING , do_drink , 0, SCMD_DRINK }, { "drop" , "dro" , POS_RESTING , do_drop , 0, SCMD_DROP }, @@ -273,7 +271,6 @@ cpp_extern const struct command_info cmd_info[] = { { "rcopy" , "rcopy" , POS_DEAD , do_oasis_copy, LVL_GOD, CON_REDIT }, { "roomflags", "roomflags", POS_DEAD , do_gen_tog , LVL_IMMORT, SCMD_SHOWVNUMS }, - { "sacrifice", "sac" , POS_RESTING , do_sac , 0, 0 }, { "say" , "s" , POS_RESTING , do_say , 0, 0 }, { "score" , "sc" , POS_DEAD , do_score , 0, 0 }, { "scan" , "sca" , POS_RESTING , do_scan , 0, 0 },