下面是引用 vincent007 於 2011-02-02 21:22 發表的 插件高手請進,|插件高手請進: 我是玩BOT的單機版殭屍,有沒有大大們能幫我寫一個把9成的BOT感染成殭屍的插件,但那大幅感染並不包括自己?我玩殭屍時在它感染到第二個BOT前已經被我SM死 ,我想玩遊擊 ,有沒有大大可以幫我? PS:我不想自己選BOT被感染成殭屍(案M再案9那個)那麼麻煩
下面是引用 a7811311622 於 2011-02-07 23:50 發表的 : 那你是想何時讓9成的BOT被感染?一個控制台指令?一個按鍵?還是一個時間點?
下面是引用 vincent007 於 2011-02-08 18:04 發表的 : 回合開始倒數完後自動被感染
#include <amxmodx> #include <zombieplague> new bool:g_be_zombie[33] = { false, ... } public plugin_init() { register_plugin("undefined", "1.0", "MyChat:a7811311622") } public zp_round_started(gamemode, id) { if (gamemode) { for(new i = 1; i <= get_playersnum(); i++) g_be_zombie[i] = false static zombie_count; zombie_count = floatround(get_playersnum()*0.9) static g_count; g_count = 0 static random_id; random_id = 0 while (g_count < zombie_count) { random_id = random_num(1, get_playersnum()) if (is_user_bot(random_id) && !g_be_zombie[random_id]) { g_be_zombie[random_id] = true zp_infect_user(random_id) g_count++ } } } }
下面是引用 a7811311622 於 2011-02-08 19:49 發表的 : [code]#include <amxmodx>#include <zombieplague>new bool:g_be_zombie[33] = { false, ... }.......