#include #include "bot.h" void init_words() { words[NOWORD] = hash("NOWORD"); words[ASCII] = hash("ASCII"); words[RAVE] = hash("RAVE"); words[STATS] = hash("STATS"); words[HUG] = hash("HUG"); words[KICK] = hash("KICK"); words[ON] = hash("ON"); words[OFF] = hash("OFF"); words[AUTH] = hash("AUTH"); words[SHUTDOWN] = hash("SHUTDOWN"); words[STATUS] = hash("STATUS"); words[SERVER] = hash("SERVER"); words[DBSTATUS] = hash("DBSTATUS"); words[RCON] = hash("RCON"); words[IRC] = hash("IRC"); words[ACTIONS] = hash("ACTIONS"); words[KILLS] = hash("KILLS"); words[TEAMKILLS] = hash("TEAMKILLS"); words[TEAMWOUNDS] = hash("TEAMWOUNDS"); words[TEAMCHAT] = hash("TEAMCHAT"); words[TEAM_SAY] = hash("TEAM_SAY"); words[SAY_TEAM] = hash("SAY_TEAM"); words[GOT_THE_BOMB] = hash("GOT_THE_BOMB"); words[TARGET_SAVED] = hash("TARGET_SAVED"); words[ALL_HOSTAGES_RESCUED] = hash("ALL_HOSTAGES_RESCUED"); words[THE] = hash("THE"); words[GAME] = hash("GAME"); words[HELP] = hash("HELP"); words[DISCONNECT] = hash("DISCONNECT"); words[RESET] = hash("RESET"); words[CHAT] = hash("CHAT"); words[ALL] = hash("ALL"); words[CONNECT] = hash("CONNECT"); words[RELOAD] = hash("RELOAD"); words[TEAM] = hash("TEAM"); words[SAY] = hash("SAY"); words[CT] = hash("CT"); words[TERRORIST] = hash("TERRORIST"); words[DEAD] = hash("DEAD"); words[ATTACKED] = hash("ATTACKED"); words[KILLED] = hash("KILLED"); words[SUICIDE] = hash("SUICIDE"); words[TRIGGERED] = hash("TRIGGERED"); words[MAP] = hash("MAP"); words[BAD] = hash("BAD"); words[LOADING] = hash("LOADING"); words[NAME] = hash("NAME"); words[WORLD] = hash("WORLD"); words[ENTERED] = hash("ENTERED"); words[DISCONNECTED] = hash("DISCONNECTED"); words[TARGET_BOMBED] = hash("TARGET_BOMBED"); words[BOMB_DEFUSED] = hash("BOMB_DEFUSED"); words[VIP_ASSASSINATED] = hash("VIP_ASSASSINATED"); words[VIP_ESCAPED] = hash("VIP_ESCAPED"); words[CTS_WIN] = hash("CTS_WIN"); words[PLANTED_THE_BOMB] = hash("PLANTED_THE_BOMB"); words[SPAWNED_WITH_THE_BOMB] = hash("SPAWNED_WITH_THE_BOMB"); words[BECAME_VIP] = hash("BECAME_VIP"); words[TERRORISTS_WIN] = hash("TERRORISTS_WIN"); words[DEFUSED_THE_BOMB] = hash("DEFUSED_THE_BOMB"); words[DROPPED_THE_BOMB] = hash("DROPPED_THE_BOMB"); words[KILLED_A_HOSTAGE] = hash("KILLED_A_HOSTAGE"); words[ROUND_START] = hash("ROUND_START"); words[ROUND_DRAW] = hash("ROUND_DRAW"); words[LASTWORD] = hash("LASTWORD"); }