zz12345zxc
|
分享:
▼
x5
|
[插件] 以實現疆屍爆頭無法重生 (目前只知ZP4.3方法)期待者近來看看吧
這方法 來自 AykinDalike 因為他說的 新手都不懂 所以我幫他來 用圖解方法 給大家 使用 EmEditor3或筆記本打開 zombie_plague40.sma 要ZP4.3的 用尋找功能找 複製程式
然後把以下文字 貼上圖片所指示的地方完成步驟一 複製程式
egister_event("DeathMsg","headshot","ade","3=1","5=0") 然後用尋找功能找 複製程式
把 以下的文字 貼到圖片指示的地方 public headshot() { new killer = read_data(1) new victim = read_data(2) new Killer[33] new Victim[33] get_user_name(killer, Killer,32) get_user_name(victim, Victim,32) if(g_zombie[victim]) { remove_task(victim+TASK_SPAWN) ( 150, 50, 200, -1.0, 0.25, 1, 0.1, 10.0, 0.1, 0.1, 2) show_hudmessage(0, "%s被%s爆頭無法重生", Victim, Killer) } return PLUGIN_CONTINUE } 最後完成 雖然只知道ZP4.3 但還有文字顯示 不錯吧 最後我有問題要問各位大大 能把字改成像CSO的字體嗎 不然好難看喔 = = set_hudmessage
[ 此文章被zz12345zxc在2010-04-17 21:15重新編輯 ]
此文章被評分,最近評分記錄財富:100 (by sk@.@) | 理由: 感謝提供 | |
|
|
|
|
x3
[樓 主]
From:台灣中華電信 | Posted:2010-04-17 15:31 |
|
|
森之千手
|
分享:
▲
▼
你欠了很多東西.......... 複製程式
public headshot()
{
new killer = read_data(1)
new victim = read_data(2)
new Killer[33]
new Victim[33]
get_user_name(killer, Killer,32)
get_user_name(victim, Victim,32)
if(g_zombie[victim])
{
remove_task(victim+TASK_SPAWN)
set_hudmessage( 150, 50, 200, -1.0, 0.25, 1, 0.1, 10.0, 0.1, 0.1, 2)
show_hudmessage(0, "被爆頭無法重生", Killer, Victim)
}
return PLUGIN_CONTINUE
}
應該是... 複製程式
public headshot()
{
new killer = read_data(1)
new victim = read_data(2)
new Killer[33]
new Victim[33]
get_user_name(killer, Killer,32)
get_user_name(victim, Victim,32)
if(g_zombie[victim])
{
remove_task(victim+TASK_SPAWN)
set_hudmessage( 150, 50, 200, -1.0, 0.25, 1, 0.1, 10.0, 0.1, 0.1, 2)[/color]
show_hudmessage(0, "%s被%s爆頭無法重生", Victim, Killer)
}
return PLUGIN_CONTINUE
}
|
|
x1
[4 樓]
From:香港網上行 | Posted:2010-04-17 18:18 |
|
|
|