Existing user? Sign in
Sign up
Games
Servers
Useful
User
Pass
2FA
[rezolvat][Cerere] Mesaje HUD
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Plugins - Help / Support
Author
Message
1697
IceCreamCandy
[Banned user]
Status: Offline
(since 03-05-2015 20:37)
Joined: 02 Jul 2014
Posts: 844
,
Topics: 115
Location:
Unknown
Reputation:
48.8
Votes
: 83
Posted: 05-02-2015, 12:34:05
| Translate post to:
... (
Click for more languages
)
Nume:
Mesaje HUD
Descriere plugin:
Sa apara pe ecran mesaje hud timp de 10 secunde la fiecare 40 de secunde .
Alte detalii:
Astea sunt mesajele,sa apara numai cu culoarea
asta
(R=30 G=144 B=225)
Spoiler:
Code:
"Acest server utilizeaza Zombie Plague Advance 1.6.1",
"In ficare zi,intre orele 00:00 si 2:00 o sa dati damage dublu .",
"Bine ai venit pe ZmP.Freakz.Ro !",
"We are the best,*** the rest !"
Exemplu:
-
0
0
Back to top
-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
Posted: 05-02-2015, 13:13:02
| Translate post to:
... (
Click for more languages
)
Pune ce mesaje vrei din amxx.cfg, trebuie sa ai ceva in genul:
Quote:
amx_imessage "Powered by
http://www.Freakz.ro
"000255100"
amx_imessage "Vizionati constant si forumul serverului
https://www.freakz.ro
!" "000100255"
amx_imessage "Pentru cereri admine,reclamatii vizitati
https://www.freakz.ro
!" "000200255"
Pui ce text vrei dupa modelul de acolo..
0
0
Back to top
IceCreamCandy
[Banned user]
Status: Offline
(since 03-05-2015 20:37)
Joined: 02 Jul 2014
Posts: 844
,
Topics: 115
Location:
Unknown
Reputation:
48.8
Votes
: 83
Posted: 05-02-2015, 13:37:51
| Translate post to:
... (
Click for more languages
)
Asta o stiam si eu.
Dar nu pot sa setez de acolo cat timp sa stea pe ecran si sa apara din 40 in 40 de secunde.
0
0
Back to top
-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
Posted: 05-02-2015, 13:55:06
| Translate post to:
... (
Click for more languages
)
Mai jos si si setarile pentru intervalul de timp la care sa apara:
Quote:
Default value: 120
amx_freq_imessage 120
0
0
Back to top
IceCreamCandy
[Banned user]
Status: Offline
(since 03-05-2015 20:37)
Joined: 02 Jul 2014
Posts: 844
,
Topics: 115
Location:
Unknown
Reputation:
48.8
Votes
: 83
Posted: 05-02-2015, 14:20:37
| Translate post to:
... (
Click for more languages
)
Stau prea putin pe ecran.
Daca nu imi face nimeni pana la 19:00 inchideti topicul.
0
0
Back to top
anoniM.xD
[Banned user]
Status: Offline
(since 15-03-2015 21:43)
Joined: 04 Feb 2015
Posts: 92
,
Topics: 19
Location:
Pitesti
Reputation:
-103.8
Votes
: 21
Posted: 05-02-2015, 15:47:02
| Translate post to:
... (
Click for more languages
)
Uite:
Spoiler:
#include <amxmodx>
#include <amxmisc>
new const hud_messages[][] = {
"Acest server utilizeaza Zombie Plague Advance 1.6.1 ^nIn ficare zi,intre orele 00:00 si 2:00 o sa dati damage dublu ^nBine ai venit pe ZmP.Freakz.Ro ! ^nWe are the best,*** the rest !",
};
public plugin_init()
{
register_plugin( "HUD", "1.0", "anoniM" );
set_task( 40.0, "StartShowHud", 0, "", 0, "b" );
}
public StartShowHud()
{
set_hudmessage( random_num( 0, 255 ), random_num( 0, 255 ), random_num( 0, 255), -1.0, 0.03, random(3), 6.0, 10.0 );
show_hudmessage( 0, "%s",hud_messages[ random_num( 0, charsmax( hud_messages ) ) ] );
}
0
0
Back to top
IceCreamCandy
[Banned user]
Status: Offline
(since 03-05-2015 20:37)
Joined: 02 Jul 2014
Posts: 844
,
Topics: 115
Location:
Unknown
Reputation:
48.8
Votes
: 83
Posted: 05-02-2015, 16:03:52
| Translate post to:
... (
Click for more languages
)
Si unde setez ca sa apara 12 sec si sa apara din 40 in 40 de sec ?
0
0
Back to top
anoniM.xD
[Banned user]
Status: Offline
(since 15-03-2015 21:43)
Joined: 04 Feb 2015
Posts: 92
,
Topics: 19
Location:
Pitesti
Reputation:
-103.8
Votes
: 21
Posted: 05-02-2015, 16:08:22
| Translate post to:
... (
Click for more languages
)
Ti-am setat eu.
set_task( 40.0, "StartShowHud", 0, "", 0, "b" ); 40.0 ( acolo modifici la cate secunde sa apara.
set_hudmessage( random_num( 0, 255 ), random_num( 0, 255 ), random_num( 0, 255), -1.0, 0.03, random(3), 6.0, 10.0 );
la sfarsit 10.0 (la cate secunde sa dispara)
0
0
Back to top
IceCreamCandy
[Banned user]
Status: Offline
(since 03-05-2015 20:37)
Joined: 02 Jul 2014
Posts: 844
,
Topics: 115
Location:
Unknown
Reputation:
48.8
Votes
: 83
Posted: 15-02-2015, 13:07:22
| Translate post to:
... (
Click for more languages
)
Multumesc.
Puteti inchide topicul.
0
0
Back to top
Topic locked
Topic is closed, you cannot post any messages in it anymore
Locked by
-P!C@-
, 15 February 2015 16:36
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Plugins - Help / Support
The time now is 29-07-2025, 23:43:45
Copyright info
Based on phpBB
ro
/
com
B
Login
I forgot my password
World of Warcraft
Login for more...
Download WoW 7.3.5
Misc
eSports
Achievements
Buy reputation with votes
Reputation trades
Forum rules
Ban list
Members list
User guide (FAQ)
World of Warcraft
View details