[04rel003] How to create Textdraw?

Started by Razor., May 17, 2017, 01:10 AM

Previous topic - Next topic

Razor.

Please, how to create Textdraw??

Thanks.



Zone_Killer

#3
function onScriptLoad(){CreateTextdraw( "Your Text Here", 95, 150, 0xFFFFFFFF );}
Bohemia Is God Of Punjabi Rap
Yo Yo Honey Singh tou chutiya hai

Razor.

Quote from: Zone_Killer on May 17, 2017, 12:01 PMfunction onScriptLoad(){CreateTextdraw( "Your Text Here", 95, 150, 0xFFFFFFFF );}
Not works...

Zone_Killer

#5
function onPlayerJoin(player)
{
text <- CreateTextdraw("Text Here",25,-48,0xFFFF0000);
text.ShowForPlayer(player);
}
Bohemia Is God Of Punjabi Rap
Yo Yo Honey Singh tou chutiya hai

NicusorN5

Quote from: Zone_Killer on May 17, 2017, 01:14 PMfunction onPlayerJoin(player)
{
text <- CreateTextdraw("Text Here",25,-48,0xFFFF0000);
text.ShowForPlayer(player);
}
uhhh...That code is outdated. For 0.4 use client-side scripts.

KAKAN

Quote from: NicusorN5 on May 17, 2017, 01:41 PM
Quote from: Zone_Killer on May 17, 2017, 01:14 PMfunction onPlayerJoin(player)
{
text <- CreateTextdraw("Text Here",25,-48,0xFFFF0000);
text.ShowForPlayer(player);
}
uhhh...That code is outdated. For 0.4 use client-side scripts.
Ever read the topic, especially the tag?
oh no

NicusorN5

Quote from: KAKAN on May 17, 2017, 01:58 PM
Quote from: NicusorN5 on May 17, 2017, 01:41 PM
Quote from: Zone_Killer on May 17, 2017, 01:14 PMfunction onPlayerJoin(player)
{
text <- CreateTextdraw("Text Here",25,-48,0xFFFF0000);
text.ShowForPlayer(player);
}
uhhh...That code is outdated. For 0.4 use client-side scripts.
Ever read the topic, especially the tag?
lol xD I didn't noticed the tag, sorry.

Razor.

Quote from: NicusorN5 on May 17, 2017, 02:02 PM
Quote from: KAKAN on May 17, 2017, 01:58 PM
Quote from: NicusorN5 on May 17, 2017, 01:41 PM
Quote from: Zone_Killer on May 17, 2017, 01:14 PMfunction onPlayerJoin(player)
{
text <- CreateTextdraw("Text Here",25,-48,0xFFFF0000);
text.ShowForPlayer(player);
}
uhhh...That code is outdated. For 0.4 use client-side scripts.
Ever read the topic, especially the tag?
lol xD I didn't noticed the tag, sorry.

Solved. Thanks all :D