MOST NOOB QUESTION EVER #4
#1

How do i Kill (delete) this 3dlabel? what's the command

Код:
Create3DTextLabel("Crime Commited! Calling all units!",COLOR_RED,cX,cY,cZ,1000,0,0);
I actually want to destroy that label automatically after 20 seconds, HOW??
Reply
#2

This will help you #1
This will help you #2
This will help you #3
This wont help worthless threads
Reply
#3

I edited my question..... could you help me with that ?
Reply
#4

Search SetTimerEx in the wiki :@
Reply
#5

wait wait... wrong copy/paste xD
Reply
#6

https://sampwiki.blast.hk/wiki/SetTimerEx ..... I couldn't learn shit from this.... how can I use it for me?? not for some messages?? please help... :/
Reply
#7

pawn Код:
new Text3D:labelid = Create3DTextLabel("Crime Commited! Calling all units!",COLOR_RED,cX,cY,cZ,1000,0,0);
SetTimerEx("DeleteLabel", 20000, false, "d", labelid);
pawn Код:
public DeleteLabel(Text3D:labelid)
{
    Delete3DTextLabel(labelid);
}
Reply
#8

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
pawn Код:
new Text3D:labelid = Create3DTextLabel("Crime Commited! Calling all units!",COLOR_RED,cX,cY,cZ,1000,0,0);
SetTimerEx("DeleteLabel", 20000, false, "d", labelid);
pawn Код:
public DeleteLabel(Text3D:labelid)
{
    Delete3DTextLabel(labelid);
}
THANK YOU!!
Reply


Forum Jump:


Users browsing this thread: