1 perc és elkészitem neked 1 teszt pickupot
Dupla hozzászólás automatikusan összefûzve. ( 2012. június 08. - 16:06:15 )
#include <a_samp>
#if defined FILTERSCRIPT
new tesztp;
public OnFilterScriptInit()
{
print(\"\\n--------------------------------------\");
print(\" Blank Filterscript by your name here\");
print(\"--------------------------------------\\n\");
tesztp = CreatePickup(1239,1,2501.8398,-1675.2831,13.3554,0);
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == tesztp)
{
ShowPlayerDialog(playerid,5,DIALOG_STYLE_MSGBOX,\"HELP\",\" Ide bármit!\",\"OK\",\"\");
}
return 1;
}
#endif