Show
Ignore:
Timestamp:
11/19/08 13:37:14 (17 years ago)
Author:
yumileroy
Message:

[svn] * Merge CLI Commands with regular commands and give them level4 access. sec_console. Source mangos - thanks to ogeraisi for the amalgamated patch.
* Redid/Fixed/Added some lang strings.
* As usual remember this is a trunk rev so stability only guaranteed on northern countries of Mars and western parts of Pluto. No warranties outside the solar system, sorry :( . Check with your local government or dictator on regulations regarding export.

Original author: KingPin?
Date: 2008-10-26 13:32:42-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/SharedDefines.h

    r108 r112  
    21682168    CHAR_NAME_DECLENSION_DOESNT_MATCH_BASE_NAME            = 0x5A, 
    21692169}; 
     2170 
     2171/// Ban function modes 
     2172enum BanMode 
     2173{ 
     2174        BAN_ACCOUNT, 
     2175        BAN_CHARACTER, 
     2176        BAN_IP 
     2177}; 
     2178 
     2179/// Ban function return codes 
     2180enum BanReturn 
     2181{ 
     2182        BAN_SUCCESS, 
     2183        BAN_SYNTAX_ERROR, 
     2184        BAN_NOTFOUND 
     2185}; 
    21702186#endif