Заявки за цветен ResetScore

Ако искате да поръчате да ви намерим определено нещо, без да става дума за коментиране, пишете тук.
Post Reply
User avatar
Ganew
Потребител
Потребител
Posts: 435
Joined: 30 Nov 2011, 18:09
Skype: r3mix.babyy

Заявки за цветен ResetScore

Post by Ganew »

Здравейте, в тази тема ще изпълнявам Вашите заявки за цветен ResetScore.


.: Образец :.

[PREFIX] Nick has just reset his score!
Image Коментари от рода на Благодаря & Мерси не се толерират. Image
Last edited by Ganew on 13 Sep 2015, 15:43, edited 2 times in total.
User avatar
Rosonerchy
Потребител
Потребител
Posts: 94
Joined: 15 Jan 2013, 15:10
Skype: milko.dimitrov48
CS Nick: CeKc TpeHuPoBka
Favorite version: CS: 1.6

Re: Заявки за цветен ResetScore - Тук

Post by Rosonerchy »

[CS-EXPRESIVE] Nick has just reset his score!
User avatar
perspektiven
Потребител
Потребител
Posts: 46
Joined: 20 Aug 2013, 20:26
Favorite version: CS: 1.6
Steam Community ID: perspectiven
Contact:

Re: Заявки за цветен ResetScore - Тук

Post by perspektiven »

[CS-DIGITAL] Player has just reset his score!
User avatar
itsmebitchez.
Потребител
Потребител
Posts: 45
Joined: 09 Jan 2013, 14:47
Skype: Л.С
CS Nick: itsmebitchez.
Favorite version: CS: 1.6
Steam Community ID: itsmebitchez
Location: Форума/сървърите
Contact:

Re: Заявки за цветен ResetScore - Тук

Post by itsmebitchez. »

[real-frag] Nick has just reset his score! - T
[real-frag] Nick has just reset his score! - CT
User avatar
atanassoww
Потребител
Потребител
Posts: 89
Joined: 13 Jan 2013, 22:12
Skype: steam_haterss
CS Nick: atanassoww
Favorite version: CS: 1.6
Steam Community ID: atanassoww
Location: Стара Загора ; Габрово

Re: Заявки за цветен ResetScore - Тук

Post by atanassoww »

@RORZA MILAN - Заповядай
Download
@perspektiven - Заповядай
Download
@itsmebitchez. - Заповядай
Download
User avatar
Invius
V.I.P
V.I.P
Posts: 433
Joined: 01 May 2012, 14:26
Discord username: illusion034

Re: Заявки за цветен ResetScore - Тук

Post by Invius »

[GlobalArena] Nick has just reset his score!
User avatar
atanassoww
Потребител
Потребител
Posts: 89
Joined: 13 Jan 2013, 22:12
Skype: steam_haterss
CS Nick: atanassoww
Favorite version: CS: 1.6
Steam Community ID: atanassoww
Location: Стара Загора ; Габрово

Re: Заявки за цветен ResetScore - Тук

Post by atanassoww »

HQ-Serv wrote:[GlobalArena] Nick has just reset his score!
@HQ-Serv - Заповядай !
Download
User avatar
itsmebitchez.
Потребител
Потребител
Posts: 45
Joined: 09 Jan 2013, 14:47
Skype: Л.С
CS Nick: itsmebitchez.
Favorite version: CS: 1.6
Steam Community ID: itsmebitchez
Location: Форума/сървърите
Contact:

Re: Заявки за цветен ResetScore - Тук

Post by itsmebitchez. »

[Realfrag] Nick has just reset his score! - T
[Realfrag] Nick has just reset his score! - CT

Ако може да ми направиш с този префикс...
User avatar
atanassoww
Потребител
Потребител
Posts: 89
Joined: 13 Jan 2013, 22:12
Skype: steam_haterss
CS Nick: atanassoww
Favorite version: CS: 1.6
Steam Community ID: atanassoww
Location: Стара Загора ; Габрово

Re: Заявки за цветен ResetScore - Тук

Post by atanassoww »

itsmebitchez. wrote:[Realfrag] Nick has just reset his score! - T
[Realfrag] Nick has just reset his score! - CT

Ако може да ми направиш с този префикс...
Заповядай -
Download
User avatar
Ple3lio0o
Потребител
Потребител
Posts: 18
Joined: 13 Jan 2014, 21:25
CS Nick: Un1versaL
Favorite version: CS: Global Offensive

Re: Заявки за цветен ResetScore - Тук

Post by Ple3lio0o »

[Nolimitcsbg] Nick has just reset his score!
User avatar
MeTJlaTa
email: ale_1993@abv.bg
email: ale_1993@abv.bg
Posts: 246
Joined: 27 Nov 2011, 19:20
CS Nick: { S p @ W n } +++
Favorite version: CS: 1.6

Re: Заявки за цветен ResetScore - Тук

Post by MeTJlaTa »

Ple3lio0o

Code: Select all

//**********************************
//  Цветове:                                                                                   
//  ^4 - зелен                                                                                  
//  ^3 - според отбора (определя се автоматично дали ще е червен или син).                                                                                       
//  ^1 - нормален цвят.       
//  Команда: amx_cvar rs_message 1/0 - да се показва/или не съобщение в чата до всички.                    
//**********************************

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

new Cvar

public plugin_init()
{
	register_clcmd("say /resetscore", "reset_score")
	register_clcmd("say /rs", "reset_score")
	Cvar = register_cvar("rs_message","1") //da se pokazva saobshtenieto na vsichki ili ne
}

public reset_score(id)
{
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	
	new name[33]
	get_user_name(id, name, 32)
	if((get_pcvar_num(Cvar) == 1)) {
		Chat(0,"^1[^3Nolimitcsbg^1] ^4%s has just reset his score!",name)
	}
	Chat(id,"^1[^3Nolimitcsbg^1] ^4You have just reset your score!")
	client_cmd(id,"spk fvox/bell")
	return PLUGIN_HANDLED
}
stock Chat(const id, const input[], any:...){
	new count = 1, players[32];
	static msg[ 191 ];
	vformat(msg, 190, input, 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(); } } }
}
Last edited by MeTJlaTa on 23 Jan 2014, 13:08, edited 2 times in total.
User avatar
itsmebitchez.
Потребител
Потребител
Posts: 45
Joined: 09 Jan 2013, 14:47
Skype: Л.С
CS Nick: itsmebitchez.
Favorite version: CS: 1.6
Steam Community ID: itsmebitchez
Location: Форума/сървърите
Contact:

Re: Заявки за цветен ResetScore - Тук

Post by itsmebitchez. »

Много се извинявам, но ще можете ли да ми направите ето такъв resetscore - http://dupload.eu/view.php?image=1989484.bmp - ако може на лс да ми го дадете, за да не се разпространява !
User avatar
MeTJlaTa
email: ale_1993@abv.bg
email: ale_1993@abv.bg
Posts: 246
Joined: 27 Nov 2011, 19:20
CS Nick: { S p @ W n } +++
Favorite version: CS: 1.6

Re: Заявки за цветен ResetScore

Post by MeTJlaTa »

Можеш да избереш целият код, да промениш каквото е нужно и да си го оцветиш. Обяснено е всичко като по учебник.
User avatar
Bestyyyy
Потребител
Потребител
Posts: 5
Joined: 23 Dec 2013, 18:03
Steam Community ID: 130319

Re: Заявки за цветен ResetScore

Post by Bestyyyy »

[LAN-BG] Nick has just reset his score! - T
[LAN-BG] Nick has just reset his score! - CT
User avatar
MeTJlaTa
email: ale_1993@abv.bg
email: ale_1993@abv.bg
Posts: 246
Joined: 27 Nov 2011, 19:20
CS Nick: { S p @ W n } +++
Favorite version: CS: 1.6

Re: Заявки за цветен ResetScore

Post by MeTJlaTa »

itsmebitchez.

Code: Select all

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


public plugin_init() {
	register_clcmd("say /resetscore", "reset_score")
	register_clcmd("say /rs", "reset_score")
}
public reset_score(id) {
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	
	Chat(id,"^4[ResetScore] ^3Your score has been ^4reset successfully!")
	client_cmd(id,"spk fvox/bell")
	return PLUGIN_HANDLED
}
stock Chat(const id, const input[], any:...){
	new count = 1, players[32];
	static msg[ 191 ];
	vformat(msg, 190, input, 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();
				}
			}
		}
}

Bestyyyy

Code: Select all

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

new Cvar

public plugin_init() {
	register_clcmd("say /resetscore", "reset_score")
	register_clcmd("say /rs", "reset_score")
	Cvar = register_cvar("rs_message","1")
}
public reset_score(id) {
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	set_user_frags(id, 0)
	cs_set_user_deaths(id, 0)
	new name[33]
	get_user_name(id, name, 32)
	if((get_pcvar_num(Cvar) == 1)) {
		 Chat(0,"4[LAN-BG] ^3%s has just reset his score!",name)
		}
		Chat(id,"^4[LAN-BG] ^3You have just reset your score!")
		client_cmd(id,"spk fvox/bell")
		return PLUGIN_HANDLED
}
stock Chat(const id, const input[], any:...){
	new count = 1, players[32];
	static msg[ 191 ];
	vformat(msg, 190, input, 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();
				}
			}
		}
}
Post Reply

Return to “Заявки”