SA-MP Forums Archive
Warning PTW :'( - 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: Warning PTW :'( (/showthread.php?tid=515021)



Warning PTW :'( - kloning1 - 24.05.2014

This Code
pawn Код:
PTW(playerid, txtPlayerSprite, modelindex);
ON top script
pawn Код:
#define PTW PlayerTextDrawSetPreviewModel
i got warning :3
Код:
C:\Users\Fauzy Rahmat\Desktop\gamemodes\RP.pwn(728) : warning 215: expression has no effect
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.



Re: Warning PTW :'( - SKAzini - 24.05.2014

I don't think that your error comes from that line since it works splendit when I tried it.

pawn Код:
#define PTW PlayerTextDrawSetPreviewModel

public OnPlayerConnect(playerid)
{
    new PlayerText:textdraw = CreatePlayerTextDraw(playerid, 320.0, 240.0, "_");
    PTW(playerid, textdraw, 411);
    return 1;
}