|
发表于 2008-2-23 22:09:57
|
显示全部楼层
来自 中国–上海–上海–松江区
回复: 奇怪
那是因为安装了lastmanbets赌博插件的缘故。
用UE32打开源码,见:
client_print(0, print_chat, "%s respawned, having %d li%s left!", name2, g_extralives[idd[0]], g_extralives[idd[0]] == 1 ? "fe" : "ves")
赌博插件额外增加了奖励复活,奖励生命值和奖励装甲值,见:
.....
new g_extralives[33] = {0, ...}
new g_extrahealth[33] = {0, ...}
new g_extraarmour[33] = {0, ...}
.......
switch (theprize) {
case 1: {
g_extralives[giveto] += prizes
}
case 2: {
g_extrahealth[giveto] += prizes
}
case 3: {
g_extraarmour[giveto] += prizes
}
default: {
console_print(id, "Only 1-3 works...")
return PLUGIN_HANDLED
} |
|