How to create a login text draw?
#1

How do i create a login text draw filterscript for my server? And when i spawn it should destroy
Reply
#2

https://sampwiki.blast.hk/wiki/Textdraw

https://sampforum.blast.hk/showthread.php?tid=376758
Reply
#3

PHP код:
new Text:TD;
//on login
TextDrawShowForPlayer(playeridTD);
//on login succes
HideTextDrawForPlayer(playeridTD);
//if gamemode
public OnGameModeInit()
{
     
TD TextDrawCreate(300.0240.0"login");
     return 
1;
}
public 
OnGameModeExit()
{
     
TextDrawDestroy(TD);
     return 
1;
}
//if filterscript 
public OnFilterScriptInit()
{
     
TD TextDrawCreate(300.0240.0"login");
     return 
1;
}
public 
OnFilterScriptExit()
{
     
TextDrawDestroy(TD);
     return 
1;

Reply
#4

There are no textdraw codes in the above reply... This guy is not helping but just increasing their problem...
Reply
#5

Got it Thanks Guys! ☺
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)