ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/commands.C
(Generate patch)

Comparing deliantra/server/server/commands.C (file contents):
Revision 1.71 by root, Mon Oct 29 23:55:55 2012 UTC vs.
Revision 1.74 by root, Sun Jan 29 02:47:05 2017 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
46 {"party", command_party, 1.0}, 46 {"party", command_party, 1.0},
47 {"gsay", command_gsay, 1.0}, 47 {"gsay", command_gsay, 1.0},
48 48
49 {"apply", command_apply, 1.0}, /* should be variable */ 49 {"apply", command_apply, 1.0}, /* should be variable */
50 {"cast", command_cast, 1.0}, /* Is this right? */ 50 {"cast", command_cast, 1.0}, /* Is this right? */
51 {"dm", command_dm, 0.0},
52 {"dmhide", command_dmhide, 0.0}, /* Like dm, but don't tell a dm arrived, hide player */
53 {"drop", command_drop, 1.0}, 51 {"drop", command_drop, 1.0},
54 {"dropall", command_dropall, 0.5 / TICK}, 52 {"dropall", command_dropall, 0.5 / TICK},
55 {"examine", command_examine, 0.5 / TICK}, 53 {"examine", command_examine, 0.5 / TICK},
56 {"fix_me", command_fix_me, 0.0}, 54 {"fix_me", command_fix_me, 0.0},
57 {"get", command_take, 1.0}, 55 {"get", command_take, 1.0},
107 {"dump", command_dump, 0.0}, 105 {"dump", command_dump, 0.0},
108 {"dumpbelow", command_dumpbelow, 0.0}, 106 {"dumpbelow", command_dumpbelow, 0.0},
109 {"forget_spell", command_forget_spell, 0.0}, 107 {"forget_spell", command_forget_spell, 0.0},
110 {"free", command_free, 0.0}, 108 {"free", command_free, 0.0},
111 {"freeze", command_freeze, 0.0}, 109 {"freeze", command_freeze, 0.0},
112 {"hide", command_hide, 0.0},
113 {"insert_into", command_insert_into, 0.0}, 110 {"insert_into", command_insert_into, 0.0},
114 {"inventory", command_inventory, 0.0}, 111 {"inventory", command_inventory, 0.0},
115 {"invisible", command_invisible, 0.0}, 112 {"invisible", command_invisible, 0.0},
116 {"learn_special_prayer", command_learn_special_prayer, 0.0}, 113 {"learn_special_prayer", command_learn_special_prayer, 0.0},
117 {"learn_spell", command_learn_spell, 0.0}, 114 {"learn_spell", command_learn_spell, 0.0},
118 {"nodm", command_nowiz, 0.0},
119 {"nowiz", command_nowiz, 0.0},
120 {"patch", command_patch, 0.0}, 115 {"patch", command_patch, 0.0},
121 {"remove", command_remove, 0.0}, 116 {"remove", command_remove, 0.0},
122 {"set_god", command_setgod, 0.0}, 117 {"set_god", command_setgod, 0.0},
123 {"stack_clear", command_stack_clear, 0.0}, 118 {"stack_clear", command_stack_clear, 0.0},
124 {"stack_list", command_stack_list, 0.0}, 119 {"stack_list", command_stack_list, 0.0},
137} 132}
138 133
139static struct init_commands 134static struct init_commands
140{ 135{
141 init_commands () 136 init_commands ()
142 { 137 {
143 qsort (Commands, CommandsSize, sizeof (CommArray_s), compare_A); 138 qsort (Commands, CommandsSize, sizeof (CommArray_s), compare_A);
144 qsort (WizCommands, WizCommandsSize, sizeof (CommArray_s), compare_A); 139 qsort (WizCommands, WizCommandsSize, sizeof (CommArray_s), compare_A);
145 } 140 }
146} init_commands; 141} init_commands;
147 142

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines