SA-MP Forums Archive
Need an "i" Icon here. - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need an "i" Icon here. (/showthread.php?tid=276491)



Delete Please - ElieJabbour - 14.08.2011

Delete Thread Please


Re: Need an "i" Icon here. - Kush - 14.08.2011

PHP код:
CreatePickup(12392,  323.331119.501083.885); 



Re: Need an "i" Icon here. - ElieJabbour - 14.08.2011

Under ?


Re: Need an "i" Icon here. - ElieJabbour - 14.08.2011

And i need this to show under the Icon

Код:
format(string, sizeof(string), " POT AVAILABLE: %d/1000.", Points[mypoint][Stock]);



Re: Need an "i" Icon here. - Onyewu - 14.08.2011

Create the pickup under OnGameModeInit.


Re: Need an "i" Icon here. - Kush - 14.08.2011

Quote:
Originally Posted by ElieJabbour
Посмотреть сообщение
And i need this to show under the Icon

Код:
format(string, sizeof(string), " POT AVAILABLE: %d/1000.", Points[mypoint][Stock]);
PHP код:
public OnGameModeInit()
{
    new 
string[128];
    
CreatePickup(12392,  323.331119.501083.885);
    
format(stringsizeof(string), " POT AVAILABLE: %d/1000."Points[mypoint][Stock]);
     
Create3DTextLabel(string,-1,323.331119.501083.88,20.0,0);
    return 
1;

I'm assuming this is what you want?