How can i do this ?
#1

SOLVED

i want to close a TEXTDRAWS with a DIALOG ?
and i run out of ideas so i came here for some help
my code
pawn Код:
new Textdraw[128];
format(Textdraw,sizeof(Textdraw),"Textdraw%s",inputtext);
TextDrawDestroy(Textdraw);
but i get a ERROR
Код:
error 035: argument type mismatch (argument 1)
Reply
#2

TextDrawDestroy( _:Textdraw );
Reply
#3

Quote:
Originally Posted by Retardedwolf
Посмотреть сообщение
TextDrawDestroy( _:Textdraw );
NOPE
i still get
Код:
error 035: argument type mismatch (argument 1)
Reply
#4

pawn Код:
new Text:Textdraw[128];
format(Textdraw,sizeof(Textdraw),"Textdraw%s",inputtext);
TextDrawDestroy(Textdraw);
Reply
#5

Quote:
Originally Posted by Cameltoe
Посмотреть сообщение
pawn Код:
new Text:Textdraw[128];
format(Textdraw,sizeof(Textdraw),"Textdraw%s",inputtext);
TextDrawDestroy(Textdraw);
Still Dont Work
Same error + Warning
Код:
warning 213: tag mismatch
error 035: argument type mismatch (argument 1)
pawn Код:
new Text:Textdraw[128]; //
format(Textdraw,sizeof(Textdraw),"Textdraw%s",inputtext); //warning 213: tag mismatch
TextDrawDestroy(Textdraw); //error 035: argument type mismatch (argument 1)
Reply
#6

Quote:
Originally Posted by park4bmx
Посмотреть сообщение
Still Dont Work
Same error + Warning
Код:
warning 213: tag mismatch
error 035: argument type mismatch (argument 1)
You cant format an textdraw :P

pawn Код:
new Text:TextDraw;
new TextDrawString[128];
format(TextDrawString,sizeof(TextDrawString),"Textdraw%s",inputtext);
TextDrawSetString(TextDraw, TextDrawString);
TextDrawDestroy(Textdraw);
Reply
#7

Quote:
Originally Posted by Cameltoe
Посмотреть сообщение
You cant format an textdraw :P
FINNALY thanks ALOT
now i know you cant format a textdraw
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)