Отредактируйте statsx.txt в cstrike/amxmodx/data/lang и, собственно, сам плагин statsxSonyx, каким образом можно добавить? Хотя бы чтобы глазам было приятнее смотреть.
Или уже только закрашевать сам statsx?
Просто видел на других серверах
/// aes_statsx_cstrike.sma
//
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(723) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(727) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(727) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(737) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(742) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(747) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(753) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(753) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(1544) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(1551) : warning 213: tag mismatch
// C:\Users\Serega\Desktop\AMX 1.8.3\amxmodx\scripting\aes_statsx_cstrike.sma(1558) : warning 213: tag mismatch
// Header size: 2432 bytes
// Code size: 48588 bytes
// Data size: 26436 bytes
// Stack/heap size: 16384 bytes
// Total requirements: 93840 bytes
//
// 11 Warnings.
// Done.
public Say_Catch(id){
new msg[191]
read_args(msg,190)
trim(msg)
remove_quotes(msg)
if(msg[0] == '/'){
- if(strcmp(msg[1],"rank",1) == 0)
+ if(strcmp(msg[1],"rank",true) == 0)
{
return RankSay(id)
}
- if(strcmp(msg[1],"hot",1) == 0 || strcmp(msg[1],"topnow",1) == 0)
+ if(strcmp(msg[1],"hot",true) == 0 || strcmp(msg[1],"topnow",true) == 0)
{
return ShowCurrentTop(id)
}
if(containi(msg[1],"top") == 0)
{
replace(msg,190,"/top","")
return SayTop(id,str_to_num(msg))
}
- if(strcmp(msg[1],"rankstats",1) == 0)
+ if(strcmp(msg[1],"rankstats",true) == 0)
{
return RankStatsSay(id,id)
}
- if(strcmp(msg[1],"statsme",1) == 0)
+ if(strcmp(msg[1],"statsme",true) == 0)
{
return StatsMeSay(id,id)
}
- if(strcmp(msg[1],"stats",1) == 0)
+ if(strcmp(msg[1],"stats",true) == 0)
{
arrayset(g_MenuStatus[id],0,2)
return ShowStatsMenu(id,0)
}
#if defined CSSTATSX_SQL
- if(strcmp(msg[1],"sestats",1) == 0 || strcmp(msg[1],"history",1) == 0)
+ if(strcmp(msg[1],"sestats",true) == 0 || strcmp(msg[1],"history",true) == 0)
{
return SeStats_Show(id,id)
}
#endif
}
return PLUGIN_CONTINUE
}
case 0:
{
- if(strcmp(aes_stats[AES_S_NAME],name,1) == 0)
+ if(strcmp(aes_stats[AES_S_NAME],name,true) == 0)
{
return aes_stats[AES_S_EXP]
}
}
case 1:
{
- if(strcmp(aes_stats[AES_S_STEAMID],authid,1) == 0)
+ if(strcmp(aes_stats[AES_S_STEAMID],authid,true) == 0)
{
return aes_stats[AES_S_EXP]
}
}
case 2:
{
- if(strcmp(aes_stats[AES_S_IP],authid,1) == 0)
+ if(strcmp(aes_stats[AES_S_IP],authid,true) == 0)
{
return aes_stats[AES_S_EXP]
}
}
body {
background:#ccc7c7;
color:#cfcbc2;
font-family:sans-serif;
}
table {
font-size:12px;
width:100%;
}
th {
background:#d6c2c2;
color:#1d71ba;
text-align:left;
}
tr {
background:#ccc7c7;
}
.q {
border:1px solid #4a4945;
}
.b {
background:#ccc7c7;
}
#q {
border:1px solid #4a4945;
}
#b {
background:#cfcbc2;
}
.iN {
color:#FF0000;
}
.iY {
color:#008000;
}
#Lm {
text-indent: 16px;
background-image: url(skill/Lm.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px;
}
#L {
text-indent: 16px;
background-image: url(skill/L.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px;
}
#Lp {
text-indent: 16px;
background-image: url(skill/Lp.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px;
}
#Mm {
text-indent: 16px;
background-image: url(skill/Mm.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px;
}
#M {
text-indent: 16px;
background-image: url(skill/M.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#Mp {
text-indent: 16px;
background-image: url(skill/Mp.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#Hm {
text-indent: 16px;
background-image: url(skill/Hm.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#H {
text-indent: 16px;
background-image: url(skill/H.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#Hp {
text-indent: 16px;
background-image: url(skill/Hp.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#Pm {
text-indent: 16px;
background-image: url(skill/Pm.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#P {
text-indent: 16px;
background-image: url(skill/P.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#Pp {
text-indent: 16px;
background-image: url(skill/Pp.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}
#G {
text-indent: 16px;
background-image: url(skill/G.png);
background-repeat: no-repeat;
color: #000000;
padding: 1px;
font-size: 11px
}