normal geri sayımlı rocket plugını forumda mevcut .sma araştırıp bul oraya ses dosyası eklenıcek ses dosyasınıda zombie escape veya plague modda virüs geri sayımından alabılrısın dosyaları bulursan hallederim
 /rocket yazinca sesli roket atan pl
 /rocket yazinca sesli roket atan pl Arkadaşlar /rocket yazınca Ten, Nine, Eight... diye 10'dan geriye sayıyor ingiliz bi amca o pluginden varmı? Dokunulmazlığı olanları da roketliyor.
M.A.R.S` ~> Gaming FuLL [NoSxe]
178.211.51.86
Adminlik Iletisim: [Skype] can_yel | Slotluk Iletisim: [Skype] mehmet.cankus1
 
  
   
   
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl normal geri sayımlı rocket plugını forumda mevcut .sma araştırıp bul oraya ses dosyası eklenıcek ses dosyasınıda zombie escape veya plague modda virüs geri sayımından alabılrısın dosyaları bulursan hallederim
 
  
   
   
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl emirhan kardeş yaparmısın sen banada lazım lütfen
 Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl Buldum
M.A.R.S` ~> Gaming FuLL [NoSxe]
178.211.51.86
Adminlik Iletisim: [Skype] can_yel | Slotluk Iletisim: [Skype] mehmet.cankus1
 
  
   
   
    
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl Arkadaşlar Plugini Yaptım Fakat 1 Tane Error Verdi.
Onu Nasıl Düzelteceğimi Anlıyamadım.
Ben Size Veriyorum Eğer Siz Düzeltebilirseniz Sorunsuz Compile Ederseniz Burda Paylaşırsanız Çok Makbule Geçer
Soundları İçindedir.
İyi Forumlar.
Konu Nobb tarafından (13-08-14 Saat 18:11 ) değiştirilmiştir.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
En İyi Konularım:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="#ff0000">CSPLAGUE.com
 Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl En alttaki kodlar hata veriyor onları silince çeviriyor .amxx'e orda bi sıkıntı var.
M.A.R.S` ~> Gaming FuLL [NoSxe]
178.211.51.86
Adminlik Iletisim: [Skype] can_yel | Slotluk Iletisim: [Skype] mehmet.cankus1
 
  
   
   
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl @artiz42
Bunu Bi Dene Bakalım
Konu tifargemirhan tarafından (13-08-14 Saat 19:39 ) değiştirilmiştir.
 Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl Ses yok :S
M.A.R.S` ~> Gaming FuLL [NoSxe]
178.211.51.86
Adminlik Iletisim: [Skype] can_yel | Slotluk Iletisim: [Skype] mehmet.cankus1
 
  
   
   
    
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl Bunun çalışacağını düşündün mü hiç ?
Bunu ekleyebilirsiniz:
- - - - - - - - - -PHP- Kodu:/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <csx>
#define PLUGIN "Roket Geri Sayim :P"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"
#define ADMIN_FLAG ADMIN_KICK
#define STARTTIME 10
new bool:counting_down;
new countdown;
new g_CountDown[][] = {
"fvox/time_is_now.wav",
"fvox/one.wav",
"fvox/two.wav",
"fvox/three.wav",
"fvox/four.wav",
"fvox/five.wav",
"fvox/six.wav",
"fvox/seven.wav",
"fvox/eight.wav",
"fvox/nine.wav",
"fvox/ten.wav"
}
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /rocket","CountDownBegin");
}
public plugin_precache()
{
for( new i; i < sizeof g_CountDown; i++ )
precache_sound( g_CountDown[ i ] );
}
public CountDownBegin(id) {
if(!access(id,ADMIN_FLAG) || get_user_team(id) != 2) return
if(counting_down) {
ColorChat(id,"^4Zaten Suanda Geri Sayim Yapiliyor !");
return;
}
ColorChat(id,"^4%d Saniye Sonra Roket Atilacak !", STARTTIME)
client_cmd( 0, "spk %s", g_CountDown[ STARTTIME ] );
countdown = STARTTIME
counting_down = true;
set_task(1.0,"FuncCountDown");
}
public FuncCountDown(id) {
if(!countdown) {
server_cmd("amx_rocket @T")
counting_down = false;
}
else {
countdown--;
set_task(1.0,"FuncCountDown");
client_cmd( 0, "spk %s", g_CountDown[ countdown ] );
ColorChat(id,"^4Roket Atilmasina %d Saniye !", countdown );
}
}
stock ColorChat(const id, const string[], {Float, Sql, Resul,_}:...) {
new msg[191], players[32], count = 1;
static len;
len = formatex(msg, charsmax(msg), "^x01" );
vformat(msg[len], charsmax(msg) - len, string, 3);
if(id)players[0] = id;
else get_players(players,count,"ch");
for (new i = 0; i < count; i++){
if(is_user_connected(players[i])){
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"),_, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
return;
}
Bunun çalışacağını düşündün mü hiç ?
Bunu ekleyebilirsiniz:
PHP- Kodu:/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <csx>
#define PLUGIN "Roket Geri Sayim :P"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"
#define ADMIN_FLAG ADMIN_KICK
#define STARTTIME 10
new bool:counting_down;
new countdown;
new g_CountDown[][] = {
"fvox/time_is_now.wav",
"fvox/one.wav",
"fvox/two.wav",
"fvox/three.wav",
"fvox/four.wav",
"fvox/five.wav",
"fvox/six.wav",
"fvox/seven.wav",
"fvox/eight.wav",
"fvox/nine.wav",
"fvox/ten.wav"
}
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /rocket","CountDownBegin");
}
public plugin_precache()
{
for( new i; i < sizeof g_CountDown; i++ )
precache_sound( g_CountDown[ i ] );
}
public CountDownBegin(id) {
if(!access(id,ADMIN_FLAG) || get_user_team(id) != 2) return
if(counting_down) {
ColorChat(id,"^4Zaten Suanda Geri Sayim Yapiliyor !");
return;
}
ColorChat(id,"^4%d Saniye Sonra Roket Atilacak !", STARTTIME)
client_cmd( 0, "spk %s", g_CountDown[ STARTTIME ] );
countdown = STARTTIME
counting_down = true;
set_task(1.0,"FuncCountDown");
}
public FuncCountDown(id) {
if(!countdown) {
server_cmd("amx_rocket @T")
counting_down = false;
}
else {
countdown--;
set_task(1.0,"FuncCountDown");
client_cmd( 0, "spk %s", g_CountDown[ countdown ] );
ColorChat(id,"^4Roket Atilmasina %d Saniye !", countdown );
}
}
stock ColorChat(const id, const string[], {Float, Sql, Resul,_}:...) {
new msg[191], players[32], count = 1;
static len;
len = formatex(msg, charsmax(msg), "^x01" );
vformat(msg[len], charsmax(msg) - len, string, 3);
if(id)players[0] = id;
else get_players(players,count,"ch");
for (new i = 0; i < count; i++){
if(is_user_connected(players[i])){
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"),_, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
return;
}
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Eklentiyle ilgili her türlü yardımı edebilirim.( jail shop hariç )
İletişim: hassel-vl
 
  
   
   
    
   Cevap: /rocket yazinca sesli roket atan pl
 Cevap: /rocket yazinca sesli roket atan pl @peNgueN
Benim Attığım Dosyada 1 Hata Vardı
O Hatayı Nasıl Düzeltebilirdim Söyler misin ?
En Kolay Hatalardan Biri Ama Benim İçin Çok Zor
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
PHP- Kodu:İletişim => cebinihat@hotmail.com
En İyi Konularım:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
color="#ff0000">CSPLAGUE.com