心静如水 发表于 2008-3-13 15:26:18

请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

//****************************
#include <amxmodx>
#include <engine>

public plugin_init()
{
register_plugin("night","0.1","A.MI")
set_task(2520.0, "updatelights")
return PLUGIN_CONTINUE
}

public updatelights()
{
set_lights("a")
new msg
format(msg, 511,"^x03【夜晚模式: 请买夜视仪并开启】^x01")
client_cmd(0,"spk misc/cvt_night0")
return PLUGIN_CONTINUE
}
get_players(playerslist,playerscount,"c")
while(replace(msg,127,"0x01","^x01")){}
while(replace(msg,127,"0x02","^x02")){}
while(replace(msg,127,"0x03","^x03")){}
while(replace(msg,127,"0x04","^x04")){}
if(id==0){
message_begin(MSG_ALL, get_user_msgid("SayText"), {0,0,0},1)
write_byte(1)
write_string(msg)
message_end()

}
else{
message_begin(MSG_ONE, get_user_msgid("SayText"), {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}
}
public plugin_precache() {
precache_sound( "misc/cvt_night0.wav")
}

zhangsheng 发表于 2008-3-13 15:32:48

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

这个好象是我改好发在突飞上的吧

731 发表于 2008-3-13 15:50:02

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

支持原创!但是也不反对改进!没有改进,DT 怎么会越来越好~~!

心静如水 发表于 2008-3-13 15:53:29

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

Post by zhangsheng
这个好象是我改好发在突飞上的吧
谢谢您的贡献精神啊...........................

Osker Lee 发表于 2008-3-13 16:08:13

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

只让第8局和第16局进入黑夜,那么其他的回合都是白天?这样不太容易,因为服务器一旦刷新,那么回合数就会重头计算的。因此,不妨改成这样吧,每隔几局就进入一次黑夜模式。比如间隔是8局的话,那么就表示第8局,第16局,第32局(即8的2n倍的回合)...... 都会进入黑夜模式。

心静如水 发表于 2008-3-13 16:22:41

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

Post by Osker Lee
只让第8局和第16局进入黑夜,那么其他的回合都是白天?这样不太容易,因为服务器一旦刷新,那么回合数就会重头计算的。因此,不妨改成这样吧,每隔几局就进入一次黑夜模式。比如间隔是8局的话,那么就表示第8局,第16局,第32局(即8的2n倍的回合)...... 都会进入黑夜模式。
我期待你的帮忙.....

yeren45 发表于 2008-3-13 16:23:28

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

这东东,我到现在都还没琢磨明白,也不怎么想去搞了:confused:

chantcs 发表于 2008-3-13 19:48:57

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

支持原创,DT明天会更好!

superlove 发表于 2008-3-13 20:14:32

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

wobuhuia

Cr@zyTreE 发表于 2008-3-13 20:53:55

回复: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式:

Post by 心静如水
//****************************
#include <amxmodx>
#include <engine>

public plugin_init()
{
register_plugin("night","0.1","A.MI")
set_task(2520.0, "updatelights")
return PLUGIN_CONTINUE
}

public updatelights()
{
set_lights...

这个是第42分钟的时候出现夜晚模式,没有提前提示买夜视仪。
页: [1] 2
查看完整版本: 请....谁能帮忙加个设定在第8局和16局出现夜晚模式: