| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 14027 online users. » 0 Member(s) | 14024 Guest(s) Applebot, Baidu, Bing
|
| Latest Threads |
A smarter way to preview ...
Forum: Qendrat e lojërave
Last Post: zjohndrk6666
08-20-2026, 07:19 PM
» Replies: 0
» Views: 13
|
how to break ReCaptcha v....
Forum: Gjuhë Angleze
Last Post: MaryAxork6174
08-15-2026, 01:06 AM
» Replies: 0
» Views: 33
|
A jena Live me postu !
Forum: Diskutime rreth eSportsKosova
Last Post: PIONERI
08-12-2026, 05:12 PM
» Replies: 0
» Views: 49
|
Ilir 'washere' Amati - AI...
Forum: CS - Config. (CFG)
Last Post: alking1
06-08-2026, 09:35 AM
» Replies: 1
» Views: 226
|
[Zombie Outstanding] +.Sm...
Forum: AMX - Addon's
Last Post: Learti Zm
06-07-2026, 01:46 PM
» Replies: 7
» Views: 584
|
Knife Addons @ 2016 New
Forum: AMX - Addon's
Last Post: Mr.Patr1k
06-07-2026, 09:49 AM
» Replies: 8
» Views: 580
|
Rreth pyetjes "A krijoi Z...
Forum: Feja Islame
Last Post: SHTRIGA
06-06-2026, 08:40 PM
» Replies: 3
» Views: 401
|
Lule MOD |FUNNY|
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 07:56 PM
» Replies: 10
» Views: 1,391
|
Kërko Addons [+SHQIP]
Forum: AMX - Addon's
Last Post: Learti Zm
06-06-2026, 05:09 PM
» Replies: 1,138
» Views: 109,583
|
[Tutorial] Clean, Optimiz...
Forum: CS - Tutorial's - Tip & Tricks
Last Post: washere
06-06-2026, 11:56 AM
» Replies: 0
» Views: 170
|
|
|
| Say /spec & Say /ct |
|
Posted by: McBloodY* - 02-23-2024, 07:39 AM - Forum: AMX - Plugin's
- Replies (5)
|
 |
![[Image: a.png]](http://www.onair-hosting.net/a.png)
* Plugins Name : mb_spec
* Plugins Autor : McBloodY
* Plugins Version : 2O14
Ky Plugins Shperben Per Te Dalur Ne Spectator Dhe Per Tu Rikthyer !
Sheno /spec Per Te Dalur Ne Spectator ! Sheno /ct Per Te Dalur CT !
![[Image: 2.png]](http://www.onair-hosting.net/2.png)
* Instalimi
[spoiler]1. Fajllin mb_spec.amxx e dergojm tek addons/amxmodx/plugins !
2. Emrin e plugins e shenojm te addons/amxmodx/configs/plugins.ini ![/spoiler]
![[Image: 32.png]](http://www.onair-hosting.net/32.png)
Foto Spata Ni Her E Kum Testu Po Kum Harru Me Fotografu E Qes 1 Dit !
SMA Code :
[spoiler]/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#define PLUGIN "Spec Switch"
#define VERSION "0.1.3"
#define AUTHOR "many"
new CsTeams:zTeam[33]
new zDeath[33]
new bool:type_spec[33] = false
new g_cvar
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
/* Cvar */
g_cvar = register_cvar("amx_specmode", "0") // 0 - enable use to all, 1 - enable use only ADMINs
/* Client Commands */
register_clcmd("say /spec", "cmdSpec", ADMIN_ALL, "- go to spectator")
register_clcmd("say_team /spec", "cmdSpec", ADMIN_ALL, "- go to spectator")
register_clcmd("say /back", "cmdBack", ADMIN_ALL, "- go back to your team")
register_clcmd("say_team /back", "cmdBack", ADMIN_ALL, "- go back to your team")
}
public cmdSpec(id)
{
if(!get_pcvar_num(g_cvar)) Spec(id)
else if( get_pcvar_num(g_cvar) && (get_user_flags(id) & ADMIN_KICK)) Spec(id)
else if( get_pcvar_num(g_cvar) && !(get_user_flags(id) & ADMIN_KICK)) PrintUserNotAdmin(id)
}
public cmdBack(id)
{
if (type_spec[id] && cs_get_user_team(id) == CS_TEAM_SPECTATOR && zTeam[id] != CS_TEAM_SPECTATOR ) Back(id)
else if( get_pcvar_num(g_cvar) && !(get_user_flags(id) & ADMIN_KICK) ) PrintUserNotAdmin(id)
}
public Spec(id)
{
zDeath[id] = cs_get_user_deaths(id)
if (cs_get_user_team(id) == CS_TEAM_SPECTATOR)
return
else{
type_spec[id] = true
zTeam[id] = cs_get_user_team(id)
cs_set_user_team(id, CS_TEAM_SPECTATOR)
user_silentkill(id)
client_print(id,print_chat,"Type /back to return from Spectator")
}
return
}
public Back(id)
{
cs_set_user_team(id, zTeam[id])
cs_set_user_deaths(id, zDeath[id])
set_task(0.5,"FirstRespawn",id)
set_task(0.8,"SecondRespawn",id)
}
public FirstRespawn(id)
{
cs_user_spawn(id)
}
public SecondRespawn(id)
{
cs_user_spawn(id)
if (cs_get_user_team(id) == CS_TEAM_T){
give_item(id,"weapon_knife")
give_item(id,"weapon_glock18")
give_item(id,"ammo_9mm")
}
if (cs_get_user_team(id) == CS_TEAM_CT){
give_item(id,"weapon_knife")
give_item(id,"weapon_usp")
give_item(id,"ammo_45acp")
give_item(id,"ammo_45acp")
}
}
PrintUserNotAdmin(id)
{
client_print(id,print_chat,"Only Admins can use /spec, /back command")
}
public PrintRule(id)
{
if ( is_user_connected(id) && !is_user_bot(id) && !is_user_hltv(id) ){
client_print(id,print_chat,"Type /spec if you want to go Spectator")
client_print(id,print_chat,"Type /back to return from Spectator")
}
}
public client_putinserver(id)
{
if(!get_pcvar_num(g_cvar)) Rule(id)
else if( get_pcvar_num(g_cvar) && (get_user_flags(id) & ADMIN_KICK)) Rule(id)
}
public client_disconnect(id) type_spec[id] = false
public client_connect(id) type_spec[id] = false
public Rule(id) set_task(20.0, "PrintRule", id)
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0{\\ fonttbl{\\ f0\\ fnil\\ fcharset0 Tahoma;}}\n{\\ colortbl ;\\ red0\\ green0\\ blue0;}\n\\ viewkind4\\ uc1\\ pard\\ cf1\\ lang1033\\ b\\ f0\\ fs16 \n\\ par }
*/[/spoiler]
![[Image: 1.png]](http://www.onair-hosting.net/1.png)
Code: http://www.mediafire.com/download/t9jni0e2e7ay50t/mb_spec.zip
|
|
|
| Method Man / Vexel |
|
Posted by: blazin - 02-23-2024, 06:43 AM - Forum: Punimet
- Replies (3)
|
 |
![[Image: 57b1be3ec0730742c91580c2174612d3.jpg]](https://m1.behance.net/rendition/modules/112156957/disp/57b1be3ec0730742c91580c2174612d3.jpg)
Behance:
Code: https://www.behance.net/gallery/16441497/Method-Man-
P.S em ka dal LQ per arsye qe e kom marr prej FB-s foton
|
|
|
| CD /COVER/ |
|
Posted by: blazin - 02-23-2024, 06:40 AM - Forum: Punimet
- No Replies
|
 |
CHAMBEH - album coming soon...
![[Image: 7d9977fa4f6b2e34013c86f8f6dcf577.jpg]](https://m1.behance.net/rendition/modules/112155745/hd/7d9977fa4f6b2e34013c86f8f6dcf577.jpg)
Watch on behance :
Code: https://www.behance.net/gallery/16441309/Chambeh-CD-Cover
ULM - Split It Out (Official Video) coming soon...
![[Image: 6836d6f08108fd6cb3cf31af172f1066.jpg]](https://m1.behance.net/rendition/modules/112544103/hd/6836d6f08108fd6cb3cf31af172f1066.jpg)
Watch on behance :
Code: https://www.behance.net/gallery/16503397/ULM-COVER
|
|
|
|