AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Welcome blink message request (https://forums.alliedmods.net/showthread.php?t=293565)

Elusive13 02-04-2017 06:09

Welcome blink message request
 
Hello. I try to find Welcome blinking message. I try to make it but not working. Trying to use some commands from other plugin who have blinking message but still not working.
Can someone help me ?

OciXCrom 02-04-2017 07:54

Re: Welcome blink message request
 
Where's the code that you tried? This is not the requests section, so you do things by yourself.

Elusive13 02-04-2017 11:53

Re: Welcome blink message request
 
1 Attachment(s)
There's the code...

yas17sin 02-04-2017 15:22

Re: Welcome blink message request
 
here you go a simple easy one :

PHP Code:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Welcome HUD message"
#define VERSION "1.0"
#define AUTHOR "yas17sin"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
}
public 
client_putinserver(id)
{
    
set_task(3.0"ShowHud"id)
}
public 
ShowHud(id)
{
    new 
PlayerName[32]
    
get_user_name(idPlayerNamecharsmax(PlayerName))
    
    
set_hudmessage(025500.270.3206.015.0)
    
show_hudmessage(id"Welcome, %s enjoy your stay here"PlayerName)



Elusive13 02-04-2017 19:17

Re: Welcome blink message request
 
I want same plugin to be blinked. I want this message to be written word by word with blinking effect..

OciXCrom 02-04-2017 20:29

Re: Welcome blink message request
 
Either it will blink or it will be word by word. You can't combine both. Change the 0 between 0.32 and 6.0 to 1 or 2 (both are different effects).

Elusive13 02-05-2017 00:01

Re: Welcome blink message request
 
I want to be written letter by letter and blinked

EFFx 02-05-2017 00:07

Re: Welcome blink message request
 
https://forums.alliedmods.net/showthread.php?t=172153

Elusive13 02-05-2017 00:33

Re: Welcome blink message request
 
I'm ok already. I make it but i have a question. Can i use effects 1 and 2 at the same time ?

EFFx 02-05-2017 00:41

Re: Welcome blink message request
 
No


All times are GMT -4. The time now is 20:44.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.