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(1239, 2, 323.33, 1119.50, 1083.88, 5);
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(1239, 2, 323.33, 1119.50, 1083.88, 5);
format(string, sizeof(string), " POT AVAILABLE: %d/1000.", Points[mypoint][Stock]);
Create3DTextLabel(string,-1,323.33, 1119.50, 1083.88,20.0,0);
return 1;
}
I'm assuming this is what you want?