Discord sunucumuz açılmıştır, hepinizi bekleriz

https://discord.gg/43gGDQe6tS

Eklenti Hatası

Eklenti sorunlarınız ve özel eklenti istekleriniz

Moderatör: Moderatörler

Kullanıcı avatarı

Konu Sahibi
noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Eklenti Hatası

Mesaj gönderen noeldayi »

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2013 ITB CompuPhase, AMX Mod X Team

Error: Cannot read from file: "ColorChat" on line 5

Compilation aborted.
1 Error.

bu hatayı nasıl çözebilirim?

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Eklenti Hatası

Mesaj gönderen noeldayi »

@Taha Demirbaş
@PaZee

Link:
Linklerini gizle
Linki Kopyala

PaZee
Mesajlar: 1762
Kayıt: Çrş Şub 22, 2017 11:28 pm
Konum: Istanbul
Server Ip/DNS: Cs.teknoklan.com
Clan İsmi: TeknoKlan
İletişim:

Eklenti Hatası

Mesaj gönderen PaZee »

colorchat include kismini silip

Kod: Tümünü seç

/* Fun functions
*
* by Numb
*
* This file is provided as is (no warranties).
*/

#if defined _colorchat_included
  #endinput
#endif
#define _colorchat_included

enum Color
{
	NORMAL = 1, // clients scr_concolor cvar color
	GREEN, // Green Color
	TEAM_COLOR, // Red, grey, blue
	GREY, // grey
	RED, // Red
	BLUE, // Blue
}

new TeamName[][] = 
{
	"",
	"TERRORIST",
	"CT",
	"SPECTATOR"
}

ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
	if( !get_playersnum() ) return;
	
	new message[256];

	switch(type)
	{
		case NORMAL: // clients scr_concolor cvar color
		{
			message[0] = 0x01;
		}
		case GREEN: // Green
		{
			message[0] = 0x04;
		}
		default: // White, Red, Blue
		{
			message[0] = 0x03;
		}
	}

	vformat(message[1], 251, msg, 4);

	// Make sure message is not longer than 192 character. Will crash the server.
	message[192] = '^0';

	new team, ColorChange, index, MSG_Type;
	
	if(id)
	{
		MSG_Type = MSG_ONE;
		index = id;
	} else {
		index = FindPlayer();
		MSG_Type = MSG_ALL;
	}
	
	team = get_user_team(index);
	ColorChange = ColorSelection(index, MSG_Type, type);

	ShowColorMessage(index, MSG_Type, message);
		
	if(ColorChange)
	{
		Team_Info(index, MSG_Type, TeamName[team]);
	}
}

ShowColorMessage(id, type, message[])
{
	static bool:saytext_used;
	static get_user_msgid_saytext;
	if(!saytext_used)
	{
		get_user_msgid_saytext = get_user_msgid("SayText");
		saytext_used = true;
	}
	message_begin(type, get_user_msgid_saytext, _, id);
	write_byte(id)		
	write_string(message);
	message_end();	
}

Team_Info(id, type, team[])
{
	static bool:teaminfo_used;
	static get_user_msgid_teaminfo;
	if(!teaminfo_used)
	{
		get_user_msgid_teaminfo = get_user_msgid("TeamInfo");
		teaminfo_used = true;
	}
	message_begin(type, get_user_msgid_teaminfo, _, id);
	write_byte(id);
	write_string(team);
	message_end();

	return 1;
}

ColorSelection(index, type, Color:Type)
{
	switch(Type)
	{
		case RED:
		{
			return Team_Info(index, type, TeamName[1]);
		}
		case BLUE:
		{
			return Team_Info(index, type, TeamName[2]);
		}
		case GREY:
		{
			return Team_Info(index, type, TeamName[0]);
		}
	}

	return 0;
}

FindPlayer()
{
	new i = -1;

	while(i <= get_maxplayers())
	{
		if(is_user_connected(++i))
			return i;
	}

	return -1;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1033\\ f0\\ fs16 \n\\ par }
*/
bunu yapistirin

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Eklenti Hatası

Mesaj gönderen noeldayi »

bakarmısın anlamadımda
Bu mesaja eklenen dosyaları görüntülemek için gerekli izinlere sahip değilsiniz.

Link:
Linklerini gizle
Linki Kopyala

PaZee
Mesajlar: 1762
Kayıt: Çrş Şub 22, 2017 11:28 pm
Konum: Istanbul
Server Ip/DNS: Cs.teknoklan.com
Clan İsmi: TeknoKlan
İletişim:

Eklenti Hatası

Mesaj gönderen PaZee »

Kod: Tümünü seç

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>


/* Fun functions
*
* by Numb
*
* This file is provided as is (no warranties).
*/

#if defined _colorchat_included
  #endinput
#endif
#define _colorchat_included

enum Color
{
   NORMAL = 1, // clients scr_concolor cvar color
   GREEN, // Green Color
   TEAM_COLOR, // Red, grey, blue
   GREY, // grey
   RED, // Red
   BLUE, // Blue
}

new TeamName[][] = 
{
   "",
   "TERRORIST",
   "CT",
   "SPECTATOR"
}

ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
   if( !get_playersnum() ) return;
   
   new message[256];

   switch(type)
   {
      case NORMAL: // clients scr_concolor cvar color
      {
         message[0] = 0x01;
      }
      case GREEN: // Green
      {
         message[0] = 0x04;
      }
      default: // White, Red, Blue
      {
         message[0] = 0x03;
      }
   }

   vformat(message[1], 251, msg, 4);

   // Make sure message is not longer than 192 character. Will crash the server.
   message[192] = '^0';

   new team, ColorChange, index, MSG_Type;
   
   if(id)
   {
      MSG_Type = MSG_ONE;
      index = id;
   } else {
      index = FindPlayer();
      MSG_Type = MSG_ALL;
   }
   
   team = get_user_team(index);
   ColorChange = ColorSelection(index, MSG_Type, type);

   ShowColorMessage(index, MSG_Type, message);
      
   if(ColorChange)
   {
      Team_Info(index, MSG_Type, TeamName[team]);
   }
}

ShowColorMessage(id, type, message[])
{
   static bool:saytext_used;
   static get_user_msgid_saytext;
   if(!saytext_used)
   {
      get_user_msgid_saytext = get_user_msgid("SayText");
      saytext_used = true;
   }
   message_begin(type, get_user_msgid_saytext, _, id);
   write_byte(id)      
   write_string(message);
   message_end();   
}

Team_Info(id, type, team[])
{
   static bool:teaminfo_used;
   static get_user_msgid_teaminfo;
   if(!teaminfo_used)
   {
      get_user_msgid_teaminfo = get_user_msgid("TeamInfo");
      teaminfo_used = true;
   }
   message_begin(type, get_user_msgid_teaminfo, _, id);
   write_byte(id);
   write_string(team);
   message_end();

   return 1;
}

ColorSelection(index, type, Color:Type)
{
   switch(Type)
   {
      case RED:
      {
         return Team_Info(index, type, TeamName[1]);
      }
      case BLUE:
      {
         return Team_Info(index, type, TeamName[2]);
      }
      case GREY:
      {
         return Team_Info(index, type, TeamName[0]);
      }
   }

   return 0;
}

FindPlayer()
{
   new i = -1;

   while(i <= get_maxplayers())
   {
      if(is_user_connected(++i))
         return i;
   }

   return -1;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1033\\ f0\\ fs16 \n\\ par }
*/




public plugin_init() {
   register_plugin("Bomba Satin Al", "1.0", "noeldayi")

   register_clcmd("say /bomba" , "bomba_menusu")
}

public bomba_menusu(id)
{ 
   new menu = menu_create("Bomba Menu", "bomba_menusu2")
   
   menu_additem(menu, "Patlayan Bomba // 2000 $", "1", 0);
   menu_additem(menu, "Sis Bombasi // 2000 $", "2", 0);
   menu_additem(menu, "Gaz Bombasi // 1500 $", "3", 0);
   
      menu_setprop(menu, MPROP_EXITNAME, "Cikis")
      menu_display(id, menu, 0)
}

public bomba_menusu2(id, menu, item)
{
   if(item == MENU_EXIT)
   {
      menu_destroy(menu);
      return PLUGIN_HANDLED;
   }
   new data[6], iName[32], Access, Callback
   menu_item_getinfo(menu, item, Access, data, 5, iName, 31, Callback)
   new anahtar = str_to_num(data)
   switch(anahtar)
   {
      case 1: {
         if(cs_get_user_money(id) >= 2000) {
          give_item(id, "weapon_hegren")
         cs_set_user_money(id, cs_get_user_money(id) - 2000);
         renkli_yazi(id,"!nBasariyla!g Patlayan !t Bomba satin aldiniz ");
                
         }
         else {
            renkli_yazi(id,"!g Patlayan Bomba !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
         }   
      }
      case 2: {
         if(cs_get_user_money(id) >= 2000) {
          give_item(id, "weapon_flash")
         cs_set_user_money(id, cs_get_user_money(id) - 2000);
         renkli_yazi(id,"!nBasariyla!g Sis !t Bombasi satin aldiniz ");
                
         }
         else {
            renkli_yazi(id,"!g Sis Bombasi !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
         }  
      }
      case 3: {
         if(cs_get_user_money(id) >= 1500) {
          give_item(id, "weapon_sgren")
         cs_set_user_money(id, cs_get_user_money(id) - 1500);
         renkli_yazi(id,"!nBasariyla!g Gaz !t Bombasi satin aldiniz ");
                
         }
         else {
            renkli_yazi(id,"!g Gaz Bombasi !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
         } 

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Eklenti Hatası

Mesaj gönderen noeldayi »

Kod: Tümünü seç

Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2013 ITB CompuPhase, AMX Mod X Team

Warning: Loose indentation on line 172
Warning: Loose indentation on line 191
Error: Undefined symbol "renkli_yazi" on line 192
Error: Undefined symbol "renkli_yazi" on line 196
Warning: Loose indentation on line 202
Error: Undefined symbol "renkli_yazi" on line 203
Error: Undefined symbol "renkli_yazi" on line 207
Warning: Loose indentation on line 213
Error: Undefined symbol "renkli_yazi" on line 214
Error: Undefined symbol "renkli_yazi" on line 218
Error: Expected token: "}", but found "-end of file-" on line 219

7 Errors.
Could not locate output file C:\Users\PC\Desktop\noeldayi\bombal.amx (compile failed).
böyle oldu kerim

@PaZee

Link:
Linklerini gizle
Linki Kopyala

PaZee
Mesajlar: 1762
Kayıt: Çrş Şub 22, 2017 11:28 pm
Konum: Istanbul
Server Ip/DNS: Cs.teknoklan.com
Clan İsmi: TeknoKlan
İletişim:

Eklenti Hatası

Mesaj gönderen PaZee »

Kod: Tümünü seç

stock renkli_yazi(const id, const input[], any:...)
{
    new count = 1, players[32];
    static msg[191];
    vformat(msg, 190, input, 3);
    
    replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
    replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
    replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
    
    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();
            }

        }
    }
}

en alt satira bunu yaz

Link:
Linklerini gizle
Linki Kopyala
Kullanıcı avatarı

Konu Sahibi
noeldayi
Mesajlar: 3167
Kayıt: Prş Oca 19, 2017 6:57 pm
Konum: 213.238.173.35
Server Ip/DNS: 213.238.173.35
Clan İsmi: Moon Gaming
İletişim:

Eklenti Hatası

Mesaj gönderen noeldayi »

PaZee yazdı:

Kod: Tümünü seç

stock renkli_yazi(const id, const input[], any:...)
{
    new count = 1, players[32];
    static msg[191];
    vformat(msg, 190, input, 3);
    
    replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
    replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
    replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
    
    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();
            }

        }
    }
}

en alt satira bunu yaz
dediğini yaptım gene hata verıyor bu sefer 7 den 10 a çıktı ne sorunu var ya çözüp atma şansın yokmudur reis ?

Link:
Linklerini gizle
Linki Kopyala

PaZee
Mesajlar: 1762
Kayıt: Çrş Şub 22, 2017 11:28 pm
Konum: Istanbul
Server Ip/DNS: Cs.teknoklan.com
Clan İsmi: TeknoKlan
İletişim:

Eklenti Hatası

Mesaj gönderen PaZee »

Kod: Tümünü seç

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>




public plugin_init() {
   register_plugin("Bomba Satin Al", "1.0", "noeldayi")

   register_clcmd("say /bomba" , "bomba_menusu")
}

public bomba_menusu(id)
{ 
	new menu = menu_create("Bomba Menu", "bomba_menusu2")
   
	menu_additem(menu, "Patlayan Bomba // 2000 $", "1", 0);
	menu_additem(menu, "Sis Bombasi // 2000 $", "2", 0);
	menu_additem(menu, "Gaz Bombasi // 1500 $", "3", 0);
   
	menu_setprop(menu, MPROP_EXITNAME, "Cikis")
	menu_display(id, menu, 0)
}

public bomba_menusu2(id, menu, item)
{
   if(item == MENU_EXIT)
   {
      menu_destroy(menu);
      return PLUGIN_HANDLED;
   }
   new data[6], iName[32], Access, Callback
   menu_item_getinfo(menu, item, Access, data, 5, iName, 31, Callback)
   new anahtar = str_to_num(data)
   switch(anahtar)
   {
      case 1: 
      {
		if(cs_get_user_money(id) >= 2000) {
			give_item(id, "weapon_hegren")
			cs_set_user_money(id, cs_get_user_money(id) - 2000);
			renkli_yazi(id,"!nBasariyla!g Patlayan !t Bomba satin aldiniz ");
                
		}
		else {
		renkli_yazi(id,"!g Patlayan Bomba !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
		}   
      }
      case 2: 
      {
		if(cs_get_user_money(id) >= 2000) {
			give_item(id, "weapon_flash")
			cs_set_user_money(id, cs_get_user_money(id) - 2000);
			renkli_yazi(id,"!nBasariyla!g Sis !t Bombasi satin aldiniz ");
                
		}
		else {
			renkli_yazi(id,"!g Sis Bombasi !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
		}  
      }
      case 3: 
      {
      	
		if(cs_get_user_money(id) >= 1500) {
			give_item(id, "weapon_sgren")
			cs_set_user_money(id, cs_get_user_money(id) - 1500);
			renkli_yazi(id,"!nBasariyla!g Gaz !t Bombasi satin aldiniz ");
                
		}
		else 
		{
			renkli_yazi(id,"!g Gaz Bombasi !nAlabilmek Icin Yeterli Paran Yok.!g 2000$ !tBiriktirmen Gerekiyor.");
		} 
      }
   }
   return PLUGIN_HANDLED
}
	 
	 
stock renkli_yazi(const id, const input[], any:...)
{
    new count = 1, players[32];
    static msg[191];
    vformat(msg, 190, input, 3);
    
    replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)
    replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk
    replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )
    
    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();
            }

        }
    }
}

Link:
Linklerini gizle
Linki Kopyala
Cevapla