幫個忙...請教修改小偷買M4的SMA

Home Home
引用 | 編輯 endcentury
2010-07-26 17:56
樓主
推文 x0
我想改成小偷能買FAMAS警察能買GAlil
有沒有人可以寫給我參考ˊˋ
只寫一個也好ˊˋ


public plugin_init() {
 register_plugin("buy famas&galil","2.3","bm47770")
 register_clcmd("say /fa","FA")
 register_clcmd("say /ga","GA")
 register_cvar("facost","2250")
 register_cvar("gacost","2250")
 new Float:maptime = get_cvar_float("mp_timelimit")
 if (maptime == 0.0)
  maptime = 15.0
 new Float:anntime = 60.0 * 5.0 // 5 minutes
 if (maptime < 5.0)
  anntime = maptime / 3.0
        set_task(anntime, "Announcement", 0, "", 0, "b")
}
public client_putinserver(id) {
 set_task(25.0, "Announcement", id)
 return PLUGIN_CONTINUE
}
public Announcement(id) {
 client_print(id, print_chat, "武器共通 [say /fa & say /ga]")
}

}
public GA(id) {
 new gacost = get_cvar_num("gacost")
        new moneyy = cs_get_user_money(id)
 if(!is_user_alive(id)) {
  client_print(id,print_chat,"死者不能買^n")
  }
 if(moneyy < gacost) {
  client_print(id,print_chat,"現金不足^n")
 }
 else {
  cs_set_user_money(id,moneyy-gacost)
                give_item(id, "weapon_galil")
 }
}

(FAMAS的格式跟GALIL一樣)
????????
別笑我...我真的很認真在想辦法...我自少爬了6篇文了...雖然都看不懂= =不過我真的看了6.7小時

獻花 x0
引用 | 編輯 tw2twtw
2010-07-26 18:42
1樓
  
說真的...插件區有人發過..... 表情
(FAMAS的格式跟GALIL一樣)
關於FAMAS的格式
請把         give_item(id, "weapon_galil")
改成         give_item(id, "weapon_famas")
可能可以.......(完全沒研究sma的人~

獻花 x0
引用 | 編輯 chuchung712
2010-07-26 19:32
2樓
  
樓主好像沒複製整個SMA上來?

獻花 x0