Dialog help - 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)
+--- Thread: Dialog help (
/showthread.php?tid=333733)
Dialog help -
DarkB0y - 12.04.2012
i want to know how to make that dialog style can some one help me
Re: Dialog help -
Hoss - 12.04.2012
This is textdraw not dialog
Re: Dialog help -
DarkB0y - 12.04.2012
okay how to make it?
Re: Dialog help -
park4bmx - 12.04.2012
well i would say use
THIS to help you out.
you can make it in-Game then just saves it into a files and from there you can insert it in your script
Re: Dialog help -
DarkB0y - 12.04.2012
okay when i finish it and i want to add it i want to make it like a cmd /rules what should i put in it ?
Re: Dialog help -
park4bmx - 12.04.2012
insede the CMD you would use
Код:
TextDrawShowForPlayer(playerid,textdrawid);
and that will show the taxtdraw/s you made for the player!
Re: Dialog help -
DarkB0y - 12.04.2012
so i only do that
Код HTML:
CMD:listhelp(playerid,params[]){
#pragma unused params
TextDrawShowForPlayer(playerid,textdrawid);
?
sry for that i'm new at scripting
Re: Dialog help -
Kitten - 12.04.2012
pawn Код:
CMD:listhelp(playerid)
{
TextDrawShowForPlayer(playerid,tdname);
return 1;
}
Re: Dialog help -
park4bmx - 12.04.2012
well yes but first creat your textdraw and set its ID
Re: Dialog help -
DarkB0y - 12.04.2012
k thx both of u