搜索
查看: 2686|回复: 6

麻烦Rulzy进来看看,万分感谢

[复制链接]
发表于 2007-10-29 16:00:10 | 显示全部楼层 |阅读模式 来自 中国–浙江–温州
--------------------------------------------------------------------------------

怎么把死亡后文选信息改成打印机效果字体,并且显示在CS游戏中最顶端,每个人看到死亡后彩色信息都不一样(就是颜色不一样)
/* AMX Mod X
* Info. Messages Plugin
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
*/

#include <amxmodx>
#include <amxmisc>

#define MAX_MESSAGES 6
#define X_POS 0.0
#define Y_POS 0.30
#define HOLD_TIME 12.0

new g_Values[MAX_MESSAGES][3]
new g_Messages[MAX_MESSAGES][384]
new g_MessagesNum
new g_Current
new g_players[32]
new num

public plugin_init() {
register_plugin("Info. Messages",AMXX_VERSION_STR,"AMXX Dev Team")
register_dictionary("imessage.txt")
register_dictionary("common.txt")
register_srvcmd("amx_imessage","setMessage")
register_cvar("amx_freq_imessage","10")
new lastinfo[8]
get_localinfo("lastinfomsg",lastinfo,7)
g_Current = str_to_num(lastinfo)
set_localinfo("lastinfomsg","")
}

public infoMessage() {
if (g_Current >= g_MessagesNum)
g_Current = 0
set_hudmessage(g_Values[g_Current][0], g_Values[g_Current][1], g_Values[g_Current][2],
X_POS, Y_POS, 1, 0.5, HOLD_TIME , 2.0, 2.0, 1)
get_players(g_players,num,"bc")
for (new i=0; i<num; i++){
show_hudmessage(g_players,g_Messages[g_Current])
client_print(g_players,print_console,g_Messages[g_Current])
}
++g_Current
new Float:freq_im = get_cvar_float("amx_freq_imessage")
if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
}

public setMessage() {
if (g_MessagesNum >= MAX_MESSAGES) {
server_print("%L",LANG_SERVER,"INF_REACH")
return PLUGIN_HANDLED
}
remove_task(12345)
read_argv(1,g_Messages[g_MessagesNum],380)
new hostname[64]
get_cvar_string("hostname",hostname,63)
replace(g_Messages[g_MessagesNum],380,"%hostname%",hostname)
while(replace(g_Messages[g_MessagesNum],380,"\n","^n")){}
new mycol[12]
read_argv(2,mycol,11) // RRRGGGBBB
g_Values[g_MessagesNum][2] = str_to_num(mycol[6])
mycol[6] = 0
g_Values[g_MessagesNum][1] = str_to_num(mycol[3])
mycol[3] = 0
g_Values[g_MessagesNum][0] = str_to_num(mycol[0])
g_MessagesNum++
new Float:freq_im = get_cvar_float("amx_freq_imessage")
if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
return PLUGIN_HANDLED
}

public plugin_end() {
new lastinfo[8]
num_to_str(g_Current,lastinfo,7)
set_localinfo("lastinfomsg",lastinfo)
}
发表于 2007-10-29 16:35:15 | 显示全部楼层 来自 中国–广东–深圳–罗湖区

回复: 麻烦Rulzy进来看看,万分感谢

改好了,自己测试下 ,红色地方是修改过的
/* AMX Mod X
* Info. Messages Plugin
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
*/

#include <amxmodx>
#include <amxmisc>

#define MAX_MESSAGES 6
#define X_POS 0.0
#define Y_POS 0.11
#define HOLD_TIME 12.0

new g_Values[MAX_MESSAGES][3]
new g_Messages[MAX_MESSAGES][384]
new g_MessagesNum
new g_Current
new g_players[32]
new num

public plugin_init() {
register_plugin("Info. Messages",AMXX_VERSION_STR,"AMXX Dev Team")
register_dictionary("imessage.txt")
register_dictionary("common.txt")
register_srvcmd("amx_imessage","setMessage")
register_cvar("amx_freq_imessage","10")
new lastinfo[8]
get_localinfo("lastinfomsg",lastinfo,7)
g_Current = str_to_num(lastinfo)
set_localinfo("lastinfomsg","")
}

public infoMessage() {
if (g_Current >= g_MessagesNum)
g_Current = 0
set_hudmessage(g_Values[g_Current][0], g_Values[g_Current][1], g_Values[g_Current][2],
X_POS, Y_POS, 2, 0.5, HOLD_TIME , 0.1, 0.1, 1)
get_players(g_players,num,"bc")
for (new i=0; i<num; i++){
show_hudmessage(g_players,g_Messages[g_Current])
client_print(g_players,print_console,g_Messages[g_Current])
}
++g_Current
new Float:freq_im = get_cvar_float("amx_freq_imessage")
if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
}

public setMessage() {
if (g_MessagesNum >= MAX_MESSAGES) {
server_print("%L",LANG_SERVER,"INF_REACH")
return PLUGIN_HANDLED
}
remove_task(12345)
read_argv(1,g_Messages[g_MessagesNum],380)
new hostname[64]
get_cvar_string("hostname",hostname,63)
replace(g_Messages[g_MessagesNum],380,"%hostname%",hostname)
while(replace(g_Messages[g_MessagesNum],380,"\n","^n")){}
new mycol[12]
read_argv(2,mycol,11) // RRRGGGBBB
g_Values[g_MessagesNum][2] = str_to_num(mycol[6])
mycol[6] = 0
g_Values[g_MessagesNum][1] = str_to_num(mycol[3])
mycol[3] = 0
g_Values[g_MessagesNum][0] = str_to_num(mycol[0])
g_MessagesNum++
new Float:freq_im = get_cvar_float("amx_freq_imessage")
if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
return PLUGIN_HANDLED
}

public plugin_end() {
new lastinfo[8]
num_to_str(g_Current,lastinfo,7)
set_localinfo("lastinfomsg",lastinfo)
}
回复

使用道具 举报

发表于 2007-10-29 17:30:31 | 显示全部楼层 来自 中国–广东–佛山–禅城区

回复: 麻烦Rulzy进来看看,万分感谢

回2楼.楼主要的是每个人看到的颜色是不一样的,并不是座标及打字效果那么简单.
回复

使用道具 举报

发表于 2007-10-29 18:55:46 | 显示全部楼层 来自 中国–广东–深圳–罗湖区

回复: 麻烦Rulzy进来看看,万分感谢

回2楼.楼主要的是每个人看到的颜色是不一样的,并不是座标及打字效果那么简单.
这个能力有限等高手解决能帮就帮了:d:
回复

使用道具 举报

发表于 2007-10-29 21:41:17 | 显示全部楼层 来自 中国–云南–西双版纳傣族自治州–景洪市

回复: 麻烦Rulzy进来看看,万分感谢

g_Values[g_Current][0], g_Values[g_Current][1], g_Values[g_Current][2]
改为
random_num(0,255), random_num(0,255), random_num(0,255)
回复

使用道具 举报

发表于 2007-10-30 11:48:34 | 显示全部楼层 来自 中国–辽宁–沈阳

回复: 麻烦Rulzy进来看看,万分感谢

5楼的随机颜色很好!
:}
回复

使用道具 举报

 楼主| 发表于 2007-11-3 10:03:25 | 显示全部楼层 来自 中国–浙江–温州

回复: 麻烦Rulzy进来看看,万分感谢

谢谢大家解决啦,非常感谢
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表