kitshmily 发表于 2005-2-10 01:36:28

【求助】如何修改imessage.sma让其显示信息如打字一个个显示

请问各位大侠:如题,我要加什么函数才能实现,或是改代码的什么地方可以实现如题所说的效果?
盼回复!
附上imessage.sma的原码:

/* 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_MESSAGES6
#define X_POS         -1.0
#define Y_POS         0.30
#define HOLD_TIME   12.0

new g_Values
new g_Messages
new g_MessagesNum
new g_Current

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
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_Values, g_Values,
    X_POS, Y_POS, 0, 0.5, HOLD_TIME , 2.0, 2.0, 1)
show_hudmessage(0,g_Messages)
client_print(0,print_console,g_Messages)
++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,380)
new hostname
get_cvar_string("hostname",hostname,63)
replace(g_Messages,380,"%hostname%",hostname)
while(replace(g_Messages,380,"\n","^n")){}
new mycol
read_argv(2,mycol,11) // RRRGGGBBB
g_Values = str_to_num(mycol)
mycol = 0
g_Values = str_to_num(mycol)
mycol = 0
g_Values = str_to_num(mycol)
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
num_to_str(g_Current,lastinfo,7)
set_localinfo("lastinfomsg",lastinfo)
}

kitshmily 发表于 2005-2-10 01:57:53

另外谁有这两个插件的源码,有的麻烦回个贴,上传个附件,谢谢!
suicidetext.amxx
plugin_bonus1.amxx
我想自己汉化一下。。

kitshmily 发表于 2005-2-10 21:33:47

大家都过年了。不来看了?呵呵。新年里就给大家添麻烦了。帮自己顶一下。。

undoer 发表于 2005-2-10 23:57:33

了解set_hudmessage()就能实现。

kitshmily 发表于 2005-2-11 03:45:00

不知道如何定义函数,可否赐教?

A082 发表于 2005-2-11 10:47:39

Post by kitshmily
另外谁有这两个插件的源码,有的麻烦回个贴,上传个附件,谢谢!
suicidetext.amxx
plugin_bonus1.amxx
我想自己汉化一下。。
已经汉化了,你自己修改
对了,我的UE不能用了,现在怎么汉化修改插件?

powerppl 发表于 2005-2-11 12:30:30

Post by A082
已经汉化了,你自己修改
对了,我的UE不能用了,现在怎么汉化修改插件?
suicidetext.amxx
plugin_bonus1.amxx
@2插件有甚N用?

BoeZombie 发表于 2005-2-11 19:51:42

Post by powerppl
suicidetext.amxx
plugin_bonus1.amxx
@2插件有甚N用? 据观察,都是有关‘杀人奖励’的

undoer 发表于 2005-2-11 22:22:36

修改如下:

set_hudmessage(g_Values, g_Values, g_Values, X_POS, Y_POS, 2, 0.5, HOLD_TIME , 0.2, 1.0, 1)


红色2表示:打字效果;
蓝色0.2,1.0分别表示:进来速度,出去速度。用来控制打字的速度,修改到你满意为止。

kitshmily 发表于 2005-2-12 03:40:16

谢谢。。。。。我真是太感动了。。。。谢谢你的指教。。。
源码我已修改了。编绎也通过了。放到服务器上已经实现如我所说那样了。呵呵。
页: [1] 2 3 4
查看完整版本: 【求助】如何修改imessage.sma让其显示信息如打字一个个显示