| 1 |  |  | /* | 
    
    | 2 |  |  |  *  The ManaPlus Client | 
    
    | 3 |  |  |  *  Copyright (C) 2017-2019  The ManaPlus Developers | 
    
    | 4 |  |  |  *  Copyright (C) 2019-2021  Andrei Karas | 
    
    | 5 |  |  |  * | 
    
    | 6 |  |  |  *  This file is part of The ManaPlus Client. | 
    
    | 7 |  |  |  * | 
    
    | 8 |  |  |  *  This program is free software; you can redistribute it and/or modify | 
    
    | 9 |  |  |  *  it under the terms of the GNU General Public License as published by | 
    
    | 10 |  |  |  *  the Free Software Foundation; either version 2 of the License, or | 
    
    | 11 |  |  |  *  any later version. | 
    
    | 12 |  |  |  * | 
    
    | 13 |  |  |  *  This program is distributed in the hope that it will be useful, | 
    
    | 14 |  |  |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
    
    | 15 |  |  |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
    
    | 16 |  |  |  *  GNU General Public License for more details. | 
    
    | 17 |  |  |  * | 
    
    | 18 |  |  |  *  You should have received a copy of the GNU General Public License | 
    
    | 19 |  |  |  *  along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
    
    | 20 |  |  |  */ | 
    
    | 21 |  |  |  | 
    
    | 22 |  |  | #define SERVERCOMMANDS_VOID | 
    
    | 23 |  |  |  | 
    
    | 24 |  |  | // Hercules commands | 
    
    | 25 |  |  | servercommandFirst(warp) | 
    
    | 26 |  |  | servercommand(where) | 
    
    | 27 |  |  | servercommand(jumpto) | 
    
    | 28 |  |  | servercommand(jump) | 
    
    | 29 |  |  | servercommand(who) | 
    
    | 30 |  |  | servercommand(who2) | 
    
    | 31 |  |  | servercommand(who3) | 
    
    | 32 |  |  | servercommand(whomap) | 
    
    | 33 |  |  | servercommand(whomap2) | 
    
    | 34 |  |  | servercommand(whomap3) | 
    
    | 35 |  |  | servercommand(whogm) | 
    
    | 36 |  |  | servercommand(save) | 
    
    | 37 |  |  | servercommand(load) | 
    
    | 38 |  |  | servercommand(speed) | 
    
    | 39 |  |  | servercommand(storage) | 
    
    | 40 |  |  | servercommand(guildstorage) | 
    
    | 41 |  |  | servercommand(option) | 
    
    | 42 |  |  | servercommand(hide) | 
    
    | 43 |  |  | servercommand(jobchange) | 
    
    | 44 |  |  | servercommand(kill) | 
    
    | 45 |  |  | servercommand(alive) | 
    
    | 46 |  |  | servercommand(kami) | 
    
    | 47 |  |  | servercommand(kamib) | 
    
    | 48 |  |  | servercommand(kamic) | 
    
    | 49 |  |  | servercommand(lkami) | 
    
    | 50 |  |  | servercommand(heal) | 
    
    | 51 |  |  | servercommand(item) | 
    
    | 52 |  |  | servercommand(item2) | 
    
    | 53 |  |  | servercommand(itembound) | 
    
    | 54 |  |  | servercommand(itembound2) | 
    
    | 55 |  |  | servercommand(itemreset) | 
    
    | 56 |  |  | servercommand(clearstorage) | 
    
    | 57 |  |  | servercommand(cleargstorage) | 
    
    | 58 |  |  | servercommand(clearcart) | 
    
    | 59 |  |  | servercommand(blvl) | 
    
    | 60 |  |  | servercommand(jlvl) | 
    
    | 61 |  |  | servercommand(help) | 
    
    | 62 |  |  | servercommand(pvpoff) | 
    
    | 63 |  |  | servercommand(pvpon) | 
    
    | 64 |  |  | servercommand(gvgoff) | 
    
    | 65 |  |  | servercommand(gvgon) | 
    
    | 66 |  |  | servercommand(model) | 
    
    | 67 |  |  | servercommand(go) | 
    
    | 68 |  |  | servercommand(monster) | 
    
    | 69 |  |  | servercommand(monstersmall) | 
    
    | 70 |  |  | servercommand(monsterbig) | 
    
    | 71 |  |  | servercommand(killmonster) | 
    
    | 72 |  |  | servercommand(killmonster2) | 
    
    | 73 |  |  | servercommand(refine) | 
    
    | 74 |  |  | servercommand(produce) | 
    
    | 75 |  |  | servercommand(memo) | 
    
    | 76 |  |  | servercommand(gat) | 
    
    | 77 |  |  | servercommand(displaystatus) | 
    
    | 78 |  |  | servercommand(stpoint) | 
    
    | 79 |  |  | servercommand(skpoint) | 
    
    | 80 |  |  | servercommand(zeny) | 
    
    | 81 |  |  | servercommand(str) | 
    
    | 82 |  |  | servercommand(agi) | 
    
    | 83 |  |  | servercommand(vit) | 
    
    | 84 |  |  | servercommand2(int_, int) | 
    
    | 85 |  |  | servercommand(dex) | 
    
    | 86 |  |  | servercommand(luk) | 
    
    | 87 |  |  | servercommand(glvl) | 
    
    | 88 |  |  | servercommand(makeegg) | 
    
    | 89 |  |  | servercommand(hatch) | 
    
    | 90 |  |  | servercommand(petfriendly) | 
    
    | 91 |  |  | servercommand(pethungry) | 
    
    | 92 |  |  | servercommand(petrename) | 
    
    | 93 |  |  | servercommand(recall) | 
    
    | 94 |  |  | servercommand(night) | 
    
    | 95 |  |  | servercommand(day) | 
    
    | 96 |  |  | servercommand(doom) | 
    
    | 97 |  |  | servercommand(doommap) | 
    
    | 98 |  |  | servercommand(raise) | 
    
    | 99 |  |  | servercommand(raisemap) | 
    
    | 100 |  |  | servercommand(kick) | 
    
    | 101 |  |  | servercommand(kickall) | 
    
    | 102 |  |  | servercommand(allskill) | 
    
    | 103 |  |  | servercommand(questskill) | 
    
    | 104 |  |  | servercommand(lostskill) | 
    
    | 105 |  |  | servercommand(spiritball) | 
    
    | 106 |  |  | servercommand(party) | 
    
    | 107 |  |  | servercommand(guild) | 
    
    | 108 |  |  | servercommand(breakguild) | 
    
    | 109 |  |  | servercommand(agitstart) | 
    
    | 110 |  |  | servercommand(agitend) | 
    
    | 111 |  |  | servercommand(mapexit) | 
    
    | 112 |  |  | servercommand(idsearch) | 
    
    | 113 |  |  | servercommand(broadcast) | 
    
    | 114 |  |  | servercommand(localbroadcast) | 
    
    | 115 |  |  | servercommand(recallall) | 
    
    | 116 |  |  | servercommand(reloaditemdb) | 
    
    | 117 |  |  | servercommand(reloadmobdb) | 
    
    | 118 |  |  | servercommand(reloadskilldb) | 
    
    | 119 |  |  | servercommand(reloadscript) | 
    
    | 120 |  |  | servercommand(reloadatcommand) | 
    
    | 121 |  |  | servercommand(reloadbattleconf) | 
    
    | 122 |  |  | servercommand(reloadstatusdb) | 
    
    | 123 |  |  | servercommand(reloadpcdb) | 
    
    | 124 |  |  | servercommand(mapinfo) | 
    
    | 125 |  |  | servercommand(dye) | 
    
    | 126 |  |  | servercommand(hairstyle) | 
    
    | 127 |  |  | servercommand(haircolor) | 
    
    | 128 |  |  | servercommand(allstats) | 
    
    | 129 |  |  | servercommand(block) | 
    
    | 130 |  |  | servercommand(ban) | 
    
    | 131 |  |  | servercommand(charban) | 
    
    | 132 |  |  | servercommand(unblock) | 
    
    | 133 |  |  | servercommand(charunban) | 
    
    | 134 |  |  | servercommand(unban) | 
    
    | 135 |  |  | servercommand(mount) | 
    
    | 136 |  |  | servercommand(guildspy) | 
    
    | 137 |  |  | servercommand(partyspy) | 
    
    | 138 |  |  | servercommand(repairall) | 
    
    | 139 |  |  | servercommand(guildrecall) | 
    
    | 140 |  |  | servercommand(partyrecall) | 
    
    | 141 |  |  | servercommand(nuke) | 
    
    | 142 |  |  | servercommand(shownpc) | 
    
    | 143 |  |  | servercommand(hidenpc) | 
    
    | 144 |  |  | servercommand(loadnpc) | 
    
    | 145 |  |  | servercommand(unloadnpc) | 
    
    | 146 |  |  | servercommand(time) | 
    
    | 147 |  |  | servercommand(jail) | 
    
    | 148 |  |  | servercommand(unjail) | 
    
    | 149 |  |  | servercommand(jailfor) | 
    
    | 150 |  |  | servercommand(jailtime) | 
    
    | 151 |  |  | servercommand(disguise) | 
    
    | 152 |  |  | servercommand(undisguise) | 
    
    | 153 |  |  | servercommand(email) | 
    
    | 154 |  |  | servercommand(effect) | 
    
    | 155 |  |  | servercommand(follow) | 
    
    | 156 |  |  | servercommand(addwarp) | 
    
    | 157 |  |  | servercommand(skillon) | 
    
    | 158 |  |  | servercommand(skilloff) | 
    
    | 159 |  |  | servercommand(killer) | 
    
    | 160 |  |  | servercommand(npcmove) | 
    
    | 161 |  |  | servercommand(killable) | 
    
    | 162 |  |  | servercommand(dropall) | 
    
    | 163 |  |  | servercommand(storeall) | 
    
    | 164 |  |  | servercommand(skillid) | 
    
    | 165 |  |  | servercommand(useskill) | 
    
    | 166 |  |  | servercommand(displayskill) | 
    
    | 167 |  |  | servercommand(snow) | 
    
    | 168 |  |  | servercommand(sakura) | 
    
    | 169 |  |  | servercommand(clouds) | 
    
    | 170 |  |  | servercommand(clouds2) | 
    
    | 171 |  |  | servercommand(fog) | 
    
    | 172 |  |  | servercommand(fireworks) | 
    
    | 173 |  |  | servercommand(leaves) | 
    
    | 174 |  |  | servercommand(summon) | 
    
    | 175 |  |  | servercommand(adjgroup) | 
    
    | 176 |  |  | servercommand(trade) | 
    
    | 177 |  |  | servercommand(send) | 
    
    | 178 |  |  | servercommand(setbattleflag) | 
    
    | 179 |  |  | servercommand(unmute) | 
    
    | 180 |  |  | servercommand(clearweather) | 
    
    | 181 |  |  | servercommand(uptime) | 
    
    | 182 |  |  | servercommand(changesex) | 
    
    | 183 |  |  | servercommand(mute) | 
    
    | 184 |  |  | servercommand(refresh) | 
    
    | 185 |  |  | servercommand(refreshall) | 
    
    | 186 |  |  | servercommand(identify) | 
    
    | 187 |  |  | servercommand(misceffect) | 
    
    | 188 |  |  | servercommand(mobsearch) | 
    
    | 189 |  |  | servercommand(cleanmap) | 
    
    | 190 |  |  | servercommand(cleanarea) | 
    
    | 191 |  |  | servercommand(npctalk) | 
    
    | 192 |  |  | servercommand(pettalk) | 
    
    | 193 |  |  | servercommand(users) | 
    
    | 194 |  |  | servercommand(reset) | 
    
    | 195 |  |  | servercommand(skilltree) | 
    
    | 196 |  |  | servercommand(marry) | 
    
    | 197 |  |  | servercommand(divorce) | 
    
    | 198 |  |  | servercommand(sound) | 
    
    | 199 |  |  | servercommand(undisguiseall) | 
    
    | 200 |  |  | servercommand(disguiseall) | 
    
    | 201 |  |  | servercommand(changelook) | 
    
    | 202 |  |  | servercommand(autoloot) | 
    
    | 203 |  |  | servercommand(alootid) | 
    
    | 204 |  |  | servercommand(autoloottype) | 
    
    | 205 |  |  | servercommand(mobinfo) | 
    
    | 206 |  |  | servercommand(exp) | 
    
    | 207 |  |  | servercommand(version) | 
    
    | 208 |  |  | servercommand(mutearea) | 
    
    | 209 |  |  | servercommand(rates) | 
    
    | 210 |  |  | servercommand(iteminfo) | 
    
    | 211 |  |  | servercommand(whodrops) | 
    
    | 212 |  |  | servercommand(whereis) | 
    
    | 213 |  |  | servercommand(mapflag) | 
    
    | 214 |  |  | servercommand(me) | 
    
    | 215 |  |  | servercommand(monsterignore) | 
    
    | 216 |  |  | servercommand(fakename) | 
    
    | 217 |  |  | servercommand(size) | 
    
    | 218 |  |  | servercommand(showexp) | 
    
    | 219 |  |  | servercommand(showzeny) | 
    
    | 220 |  |  | servercommand(showdelay) | 
    
    | 221 |  |  | servercommand(autotrade) | 
    
    | 222 |  |  | servercommand(changegm) | 
    
    | 223 |  |  | servercommand(changeleader) | 
    
    | 224 |  |  | servercommand(partyoption) | 
    
    | 225 |  |  | servercommand(invite) | 
    
    | 226 |  |  | servercommand(duel) | 
    
    | 227 |  |  | servercommand(leave) | 
    
    | 228 |  |  | servercommand(accept) | 
    
    | 229 |  |  | servercommand(reject) | 
    
    | 230 |  |  | servercommand(clone) | 
    
    | 231 |  |  | servercommand(slaveclone) | 
    
    | 232 |  |  | servercommand(evilclone) | 
    
    | 233 |  |  | servercommand(tonpc) | 
    
    | 234 |  |  | servercommand(commands) | 
    
    | 235 |  |  | servercommand(noask) | 
    
    | 236 |  |  | servercommand(request) | 
    
    | 237 |  |  | servercommand(homlevel) | 
    
    | 238 |  |  | servercommand(homevolution) | 
    
    | 239 |  |  | servercommand(hommutate) | 
    
    | 240 |  |  | servercommand(makehomun) | 
    
    | 241 |  |  | servercommand(homfriendly) | 
    
    | 242 |  |  | servercommand(homhungry) | 
    
    | 243 |  |  | servercommand(homtalk) | 
    
    | 244 |  |  | servercommand(hominfo) | 
    
    | 245 |  |  | servercommand(homstats) | 
    
    | 246 |  |  | servercommand(homshuffle) | 
    
    | 247 |  |  | servercommand(showmobs) | 
    
    | 248 |  |  | servercommand(feelreset) | 
    
    | 249 |  |  | servercommand(auction) | 
    
    | 250 |  |  | servercommand(mail) | 
    
    | 251 |  |  | servercommand(noks) | 
    
    | 252 |  |  | servercommand(allowks) | 
    
    | 253 |  |  | servercommand(cash) | 
    
    | 254 |  |  | servercommand(points) | 
    
    | 255 |  |  | servercommand(agitstart2) | 
    
    | 256 |  |  | servercommand(agitend2) | 
    
    | 257 |  |  | servercommand(skreset) | 
    
    | 258 |  |  | servercommand(streset) | 
    
    | 259 |  |  | servercommand(storagelist) | 
    
    | 260 |  |  | servercommand(cartlist) | 
    
    | 261 |  |  | servercommand(itemlist) | 
    
    | 262 |  |  | servercommand(stats) | 
    
    | 263 |  |  | servercommand(delitem) | 
    
    | 264 |  |  | servercommand(charcommands) | 
    
    | 265 |  |  | servercommand(font) | 
    
    | 266 |  |  | servercommand(accinfo) | 
    
    | 267 |  |  | servercommand(set) | 
    
    | 268 |  |  | servercommand(reloadquestdb) | 
    
    | 269 |  |  | servercommand(undisguiseguild) | 
    
    | 270 |  |  | servercommand(disguiseguild) | 
    
    | 271 |  |  | servercommand(sizeall) | 
    
    | 272 |  |  | servercommand(sizeguild) | 
    
    | 273 |  |  | servercommand(addperm) | 
    
    | 274 |  |  | servercommand(rmvperm) | 
    
    | 275 |  |  | servercommand(unloadnpcfile) | 
    
    | 276 |  |  | servercommand(cart) | 
    
    | 277 |  |  | servercommand(cashmount) | 
    
    | 278 |  |  | servercommand(join) | 
    
    | 279 |  |  | servercommand(channel) | 
    
    | 280 |  |  | servercommand(fontcolor) | 
    
    | 281 |  |  | servercommand(searchstore) | 
    
    | 282 |  |  | servercommand(costume) | 
    
    | 283 |  |  | servercommand(skdebug) | 
    
    | 284 |  |  | servercommand(cddebug) | 
    
    | 285 |  |  | servercommand(lang) | 
    
    | 286 |  |  | servercommand(bodystyle) | 
    
    | 287 |  |  | servercommand(setskill) | 
    
    | 288 |  |  |  | 
    
    | 289 |  |  | // Evol commands | 
    
    | 290 |  |  | servercommand(slide) | 
    
    | 291 |  |  | servercommand(serverexit) |