Alıntı peNgueN Nickli Üyeden Alıntı Mesajı göster
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(PLUGINVERSIONAUTHOR)
    
    
register_clcmd("say /rocket","CountDownBegin");
}

public 
plugin_precache()
{
    for( new 
isizeof g_CountDowni++ )
        
precache_soundg_CountDown] );
}

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_cmd0"spk %s"g_CountDownSTARTTIME ] ); 
    
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_cmd0"spk %s"g_CountDowncountdown ] ); 
        
ColorChat(id,"^4Roket Atilmasina %d Saniye !"countdown );
    }
}
stock ColorChat(const id, const string[], {FloatSqlResul,_}:...) {
    new 
msg[191], players[32], count 1;
    
    static 
len;
    
len formatex(msgcharsmax(msg), "^x01" );
    
vformat(msg[len], charsmax(msg) - lenstring3);
    
    if(
id)players[0] = id;
    else 
get_players(players,count,"ch");
    
    for (new 
0counti++){
        
        if(
is_user_connected(players[i])){
            
            
message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"),_players[i]);
            
write_byte(players[i]);
            
write_string(msg);
            
message_end();
        }
    }
    return;

@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