User
Pass
2FA
 
 

AJUTOR

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues
Author Message1794
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 15-04-2016, 10:09:13 | Translate post to: ... (Click for more languages)

Salut cine ma ajuta si pe mine . Am clasa de zm ” tesla” si nu are bila e energie . uitativa si voi .

[Tesla]
NAME = Tesla
INFO = [ Fire ] *VIP*
MODELS = bw_tesla_o_o
CLAWMODEL = v_teslabw.mdl
HEALTH = 3400
SPEED = 220
GRAVITY = 0.88
KNOCKBACK = 0.49



Dar pe sv nu are bila de energie . stiti cumva cum pot face sa apara?

0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 15-04-2016, 10:16:05 | Translate post to: ... (Click for more languages)

nu avem ce vedea acolo, trebuie sma-ul de la plugin.



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 15-04-2016, 17:58:55 | Translate post to: ... (Click for more languages)

Unde gasesc sma-ul?
0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 15-04-2016, 19:02:41 | Translate post to: ... (Click for more languages)

Fișierele .sma le găsești în HLDS\cstrike\addons\amxmodx\scripting , scrie în dreptul lor ”Fișier SMA” .
0 0
  
Back to top
View user's profile Send private message
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 16-04-2016, 08:01:30 | Translate post to: ... (Click for more languages)

/***********************************************************************************\

* *

* Green Admin Chat *

* by Arion http://forums.alliedmods.net/member.php?u=26333 *

* *

* e-Mail/MSN: [email protected] *

* *

* Author: X-olent http://forums.alliedmods.net/member.php?u=25165 *

* Original request thread: http://forums.alliedmods.net/showthread.php?t=57993 *

* *

* Description: *

* With this plugin, all admin "say" and "say_team" will be green. *

* *

* Works with CS 1.6, don't know about other mods. *

* *

* No conflits with messages starting with / and @ *

* *

* *

* Changelog: *

* *

* v1.0 First release *

* v1.1 Added custom admin level *

* *

* *

\***********************************************************************************/





#include <amxmodx>

#include <amxmisc>



#define ADMIN ADMIN_KICK // Custom admin level



new gMaxPlayers

new gMsgSayText

new gTeams[3][] =

{

"Spectator",

"Terrorist",

"Counter-Terrorist"

}



public plugin_init()

{

register_plugin("Green Admin Chat", "1.1", "Arion")

register_clcmd("say", "handle_say")

register_clcmd("say_team", "handle_teamsay")



gMaxPlayers = get_maxplayers()

gMsgSayText = get_user_msgid("SayText")

}



public handle_say(id)

{

new message[192]

read_args(message, 191)

remove_quotes(message)

if(!valid_message(message)) // Checks if message starts with / or @ or @@ or @@@

{

return PLUGIN_CONTINUE

}



new name[32]

get_user_name(id, name, 31)



new alive = is_user_alive(id)



new userFlags = get_user_flags(id)



if((userFlags & ADMIN) && alive) format(message, 191, "^x03%s ^x01: ^x04 %s", name, message) // Live admin

else if((userFlags & ADMIN) && !alive) format(message, 191, "^x01*DEAD*^x03%s ^x01: ^x04 %s", name, message) // Dead admin

else if((!(userFlags & ADMIN)) && alive) format(message, 191, "^x03%s ^x01: %s", name, message) // Live normal player

else format(message, 191, "^x01*DEAD*^x03%s ^x01: %s", name, message) // Dead normal player



for(new i = 1; i <= gMaxPlayers; i++)

{

if(!is_user_connected(i))

continue



if(alive && is_user_alive(i) || !alive && !is_user_alive(i)) // Prints the message

{

message_begin(MSG_ONE, gMsgSayText, {0, 0, 0}, i)

write_byte(id)

write_string(message)

message_end()

}

}

return PLUGIN_HANDLED

}



public handle_teamsay(id)

{

new message[192]

read_args(message, 191)

remove_quotes(message)

if(!valid_message(message))

{

return PLUGIN_CONTINUE

}



new name[32]

get_user_name(id, name, 31)



new alive = is_user_alive(id)



new team = get_user_team(id)



new userFlags = get_user_flags(id)



if((userFlags & ADMIN) && alive) format(message, 191, "^x01(%s)^x03 %s^x01 : ^x04 %s", gTeams[team], name, message)

else if((userFlags & ADMIN) && !alive) format(message, 191, "^x01*DEAD*(%s)^x03 %s^x01 : ^x04 %s", gTeams[team], name, message)

else if((!(userFlags & ADMIN)) && alive) format(message, 191, "^x01(%s)^x03 %s^x01 : %s", gTeams[team], name, message)

else format(message, 191, "^x01*DEAD*(%s)^x03 %s^x01 : %s", gTeams[team], name, message)



for(new i = 1; i <= gMaxPlayers; i++)

{

if(!is_user_connected(i))

continue



if(get_user_team(i) != team)

continue



if(alive && is_user_alive(i) || !alive && !is_user_alive(i))

{

message_begin(MSG_ONE, gMsgSayText, {0, 0, 0}, i)

write_byte(id)

write_string(message)

message_end()

}

}

return PLUGIN_HANDLED

}



bool:valid_message(const message[]) // Returns False case message starts with / or @ or @@ or @@@, otherwise, returns True

{

if(message[0] == '/'

|| message[0] == '@'

|| message[0] == '@' && message[1] == '@'

|| message[0] == '@' && message[1] == '@' && message[2] == '@'

|| !strlen(message))

{

return false

}



return true

}

Update @ 16-04-2016, 09:01:30

Sa mai spun ceva , . L-am rugat pe un prieten sa im faca ca al slot/vip/admin/helper/owner sa sari de 2 ori . El a facut dar , dar acum eu ( owner ) sar de 3 ori si al zm de 2 .

Cum fac ca doar la human sa sar de 2 ori si al zm odata. ???

+ de asta cum pun armura 200 la vipi/admini/helperi si owneri?

Multumesc.

0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 16-04-2016, 10:10:32 | Translate post to: ... (Click for more languages)

Ãsta nu e sma-ul de la nici o clasã de zm . Dupã cum scrie și mai sus ”Green Admin Chat” . Adicã acest plugin îi face pe admini sã scrie cu verde în chat .
Dacã vrei ca vipii sã aibã 200 armurã , intrã în HLDS\cstrike\addons\amxmodx\configs și deschide cu notepad fișierul zm_vip.cfg . Acum cautã linia

zp_vip_armor

și pune în dreptu ei 200 , adicã așa

zp_vip_armor 200

Apoi salvezi modificãrile și dai restart la server .

0 0
  
Back to top
View user's profile Send private message
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 16-04-2016, 18:30:47 | Translate post to: ... (Click for more languages)

Nu este fisierul zp_vip_armor.

Uitati : .

Cu vip este dor . :
cso_vip.cfg

vips.ini

zm_vip.cfg

0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 16-04-2016, 21:16:37 | Translate post to: ... (Click for more languages)

etcc wrote:
Nu este fisierul zp_vip_armor.

Uitati : .

Cu vip este dor . :
cso_vip.cfg

vips.ini

zm_vip.cfg


Eu mai sus am spus ”Dacã vrei ca vipii sã aibã 200 armurã , intrã în HLDS\cstrike\addons\amxmodx\configs și deschide cu notepad fișierul zm_vip.cfg . Acum cautã linia zp_vip_armor ”
Am spus sã deschizi cu notepad fișierul zm_vip.cfg și sã cauți în el zp_vip_armor .

0 0
  
Back to top
View user's profile Send private message
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 16-04-2016, 22:20:45 | Translate post to: ... (Click for more languages)

zp_vip_armor 200 // How much armour humans gets every spawn, [0-off]


dar pe sv nu are armura deloc .

0 0
  
Back to top
View user's profile Send private message
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 20-04-2016, 16:22:20 | Translate post to: ... (Click for more languages)

Salut .
Descarcati si voi addonusul acesta si urcatil pe wwww.postimg.org

addons : E al lui ctm


https://mega.nz/#!LYpGjQDA!ggP2jETA0gTSQp4i6JwNRM8Kw6cq5byaY33fls0IPvk

0 0
  
Back to top
View user's profile Send private message
etcc

[Mentally Stable]



Status: Offline
(since 07-02-2018 16:42)
Joined: 12 Mar 2016
Posts: 70, Topics: 23
Location: Romania

Reputation: 61.4
Votes: 2

Post Posted: 24-04-2016, 21:15:58 | Translate post to: ... (Click for more languages)

Salut.
Descati si voi addonusul acesta si urcatimil pe http://www.postimig.org

Adonns : e al lui ctm


https://mega.nz/#!LYpGjQDA!ggP2jETA0gTSQp4i6JwNRM8Kw6cq5byaY33fls0IPvk

0 0
  
Back to top
View user's profile Send private message
Gathor
[Banned user]


Banned


Status: Offline
(since 04-08-2016 18:23)
Joined: 24 Mar 2016
Posts: 15, Topics: 2
Location: Romania

Reputation: 7.6
Votes: 1

Post Posted: 25-04-2016, 12:20:28 | Translate post to: ... (Click for more languages)

Sfatul meu e sa renunti momentan la crearea unui server din moment ce tu nu stii absolut nimic despre asta. Habar nu ai ce e acela sma de la un plugin...
Mai mult faci Post Hunt, creezi topicuri degeaba.
Stii ca daca reusesti sa-ti faci un server pana la urma o sa trebuiasca sa il hostezi? Asta costa incepand de la 50 RON/LUNA.
Tu in calculator ai serverul pe WINDOWS, dar in FTP (File Transfer Protocol), adica pe host trebuie sa ai serverul pe LINUX.
Sunt o gramada de lucruri pe care tu inca nu le cunosti si iti spun sincer ca nu e asa usor precum crezi.
Daca nu o sa tii serverul pe comunitate timp de minim 3 luni o sa primesti avertismente care duc la ban pe comunitate.

Daca esti interesat de un server de Zombie gata facut, am creat eu unul care sigur ti-ar placea. Am muncit 5 luni la el si inca mai lucrez la niste lucruri marunte dupa care o sa-l hostez.
Tu nu mai ai ce sa faci la el, trebuie doar sa il hostezi. E si WINDOWS si LINUX.
Nu aveam de gand sa-l dau si vad ca tu chiar vrei un server, dar nu il dau fara 15 Euro.
Daca esti interesat imi dai PM si iti trimit poze si ce mai vrei tu.
Are 14 Clase de ZM si 14 de Human, iteme, vip, tot ce vrei.

0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 25-04-2016, 18:53:25 | Translate post to: ... (Click for more languages)

Gathor da-i drumul de aici cu addonurile tale copiate de pe net si vandute pe bani. Vrei sa faci bani da-i drumu la munca nu sta sa cersesti de aici bani. Vrei sa ajuti o faci fara sa ceri bani. Ala e sma de la green chat nicidecum de la ce pluginul care trebuie.



0 0
  
Back to top
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by destroi112, 23 July 2016 08:15



 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues  


The time now is 09-05-2024, 03:35:58
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password


This message appears only once, so
like us now until it's too late ! :D
x