Merhaba Serverimiz de Say Komutu İle Tag Alınabiliyor Ancak Komutu 2 ve 3 Kere Yazınca Sürekli Nickin Başına TAG Eklemiş Oluyor Aşağıya Bıraktığım Eklenti de TAG ı Sadece 1 Kere Almasını İstiyorum.
Say Komutuyla Tag Alma Sorunu
Moderatör: Moderatörler
-
Konu Sahibi - Mesajlar: 108
- Kayıt: Cmt Kas 18, 2017 5:35 pm
Say Komutuyla Tag Alma Sorunu
Bu mesaja eklenen dosyaları görüntülemek için gerekli izinlere sahip değilsiniz.
Link: | |
Linklerini gizle |
-
- Mesajlar: 29
- Kayıt: Pzr Ağu 11, 2019 1:27 am
Say Komutuyla Tag Alma Sorunu
Kod: Tümünü seç
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "tagalbythersevo"
#define VERSION "1.0"
#define AUTHOR "thersevo"
#define SOUND_NAME "buttons/blip1.wav"
/* 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;
}
new isim[36]
new girildi[33]
new engel[33]
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /tag","tagal")
register_clcmd("say /clan","tagal")
}
public plugin_precache() {
precache_sound(SOUND_NAME);
}
public tagal(id)
{
if(girildi[id] == 1) {
ColorChat(id,RED,"[BROTHER`S] : Zaten clandasin, eger tag gelmediyse yeni roundu beklemelisin!")
engel[id] = 1
return PLUGIN_HANDLED
}
if(is_user_admin(id)) {
ColorChat(id,RED,"[BROTHER`S] : Adminler Tag Yapamaz!")
return PLUGIN_HANDLED
}
if (engel[id] ==1)
{
ColorChat(id,RED,"Sadece 1 Defa Kullanabilirsin!")
}
get_user_name(id,isim,35)
client_cmd(id, "name ^"BROTHER`S | %s^" ", isim)
client_cmd(id , "spk %s" , SOUND_NAME);
client_print(0,print_chat,"[BROTHER`S] : Biri daha clanimiza katildi, Hosgeldin.")
girildi[id] = 1
return PLUGIN_HANDLED
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/
Link: | |
Linklerini gizle |