1. sayfa (Toplam 2 sayfa)

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 3:44 pm
gönderen KaanBey
merhaba arkadaş panele codmod eklentisi yükleyeince otomatik olarak colorhatası vriyor colorchat hatası nedir bilen varmı nasıl düzeltirim?
cod1.sma

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 3:48 pm
gönderen YeeBoT
KaanBey yazdı:merhaba arkadaş panele codmod eklentisi yükleyeince otomatik olarak colorhatası vriyor colorchat hatası nedir bilen varmı nasıl düzeltirim?
cod1.sma

Suanda Disardayim Eve Gectigim Zaman Sorunu Cozcem Telefonun Not defterinden smayi inceledim

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 3:52 pm
gönderen KaanBey
@Yeebot 4 gözle bekliyorum

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 3:55 pm
gönderen YeeBoT
KaanBey yazdı:@Yeebot 4 gözle bekliyorum
En Gec 11 De Sma Elinde olur

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 4:00 pm
gönderen LSR
@KaanBey SMA Buyur
Aslında Colochat Hatası Basit Bir Hata

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 }
*/
Bu Kodları SMA'da EN Alta Yapıştırıp,Senin Kendi Pluginin'den En Üstte "#include <colorchat>" Yazısını Silince İşlem Tamamlanır.

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 4:15 pm
gönderen KaanBey
Teşekkür ederim :D oldu

cs 1.6 codmod

Gönderilme zamanı: Cum Eyl 11, 2015 4:21 pm
gönderen LSR
Rica Ederim.

cs 1.6 codmod

Gönderilme zamanı: Pzr Eyl 13, 2015 9:31 am
gönderen - Conneti0n` (;
Kaancım Ben Yaptım Zaten Colorchat Hatasını Ama MW4 Olmuyor Ekleyince Server Çöküyor Bi Çözüm Bulmaya Çalışıcam

cs 1.6 codmod

Gönderilme zamanı: Sal Eyl 15, 2015 4:35 pm
gönderen burak
Modelleri yukledin mi doğru sekilde onun disi bi sorunu yok

cs 1.6 codmod

Gönderilme zamanı: Sal Eyl 15, 2015 9:56 pm
gönderen KaanBey
modelleri yok indiriken sadece sma dosyaları tek vardı