Ust Yazı
Moderatör: Moderatörler
-
dadas_caner
Konu Sahibi
Yasaklı Üye
- Mesajlar: 20
- Kayıt: Pzt Şub 04, 2019 5:12 pm
-
Necati Doğan
- Mesajlar: 822
- Kayıt: Prş Haz 07, 2018 6:18 pm
- Konum: İstanbul
- Clan İsmi: Ke$`h Gaming
- İletişim:
Ust Yazı
Kod: Tümünü seç
#include <amxmodx>
public plugin_init() {
register_plugin("PLUGIN", "VERSION", "nd");
register_event("DeathMsg", "Event_DeathMsg", "a");
set_task(1.0,"hud1",0,_,_,"b"),set_task(3.0,"hud2",0,_,_,"b");
}
public hud1() {
new players[MAX_PLAYERS],ctnum,tnum; get_players(players,ctnum,"acehi","CT"),get_players(players,tnum,"acehi","TERRORIST");
set_hudmessage(255, 0, 0, 5.0, 0.75, 2, 0.5, 1.0);
show_hudmessage(0, "x Yasayan Gardiyan: [ %d ]^nx Yasayan Mahkum: [ %d ]",ctnum,tnum);
}
public hud2() {
set_hudmessage(255, 0, 0, -1.0, 0.0, 2, 1.0, 3.0);
show_hudmessage(0, "REKLMAREKLAMREKLAMREKLAM^nREKLMAREKLAMREKLAMREKLAM^nREKLMAREKLAMREKLAMREKLAM");
}| Link: | |
| Linklerini gizle |
-
dadas_caner
Konu Sahibi
Yasaklı Üye
- Mesajlar: 20
- Kayıt: Pzt Şub 04, 2019 5:12 pm
-
Necati Doğan
- Mesajlar: 822
- Kayıt: Prş Haz 07, 2018 6:18 pm
- Konum: İstanbul
- Clan İsmi: Ke$`h Gaming
- İletişim:
Ust Yazı
@dadas_caner DeathMSG silmeyi unutmuşum. Buyur bunu dene.
Kod: Tümünü seç
#include <amxmodx>
public plugin_init() {
register_plugin("PLUGIN", "VERSION", "nd");
set_task(1.0,"hud1",0,_,_,"b"),set_task(3.0,"hud2",0,_,_,"b");
}
public hud1() {
new players[MAX_PLAYERS],ctnum,tnum; get_players(players,ctnum,"acehi","CT"),get_players(players,tnum,"acehi","TERRORIST");
set_hudmessage(255, 0, 0, 5.0, 0.75, 2, 0.5, 1.0);
show_hudmessage(0, "x Yasayan Gardiyan: [ %d ]^nx Yasayan Mahkum: [ %d ]",ctnum,tnum);
}
public hud2() {
set_hudmessage(255, 0, 0, -1.0, 0.0, 2, 1.0, 3.0);
show_hudmessage(0, "REKLMAREKLAMREKLAMREKLAM^nREKLMAREKLAMREKLAMREKLAM^nREKLMAREKLAMREKLAMREKLAM");
}| Link: | |
| Linklerini gizle |