SA-MP Forums Archive
MOST NOOB QUESTION EVER #4 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: MOST NOOB QUESTION EVER #4 (/showthread.php?tid=252360)



MOST NOOB QUESTION EVER #4 - [JnA]DukeNukem - 01.05.2011

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??


Re: MOST NOOB QUESTION EVER #4 - Lorenc_ - 01.05.2011

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


Re: MOST NOOB QUESTION EVER #4 - [JnA]DukeNukem - 01.05.2011

Quote:
Originally Posted by Lorenc_
Посмотреть сообщение
I edited my question..... could you help me with that ?


Re: MOST NOOB QUESTION EVER #4 - Lorenc_ - 01.05.2011

Search SetTimerEx in the wiki :@


Re: MOST NOOB QUESTION EVER #4 - [JnA]DukeNukem - 01.05.2011

wait wait... wrong copy/paste xD


Re: MOST NOOB QUESTION EVER #4 - [JnA]DukeNukem - 01.05.2011

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... :/


Re: MOST NOOB QUESTION EVER #4 - MadeMan - 01.05.2011

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);
}



Re: MOST NOOB QUESTION EVER #4 - [JnA]DukeNukem - 01.05.2011

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!!