SA-MP Forums Archive
Pickup, 3D Text and MAP ICON - 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: Pickup, 3D Text and MAP ICON (/showthread.php?tid=645409)



Pickup, 3D Text and MAP ICON - Mivco - 26.11.2017

HI all, I have a map where I created in one stock pickup and 3D text and map icon, only a map icon is created and nothing more.

Code: OnGameMode
PHP код:
AddBenzinka(4711.4292,189.8578,12.1993);
AddBenzinka(4703.7734,189.9148,12.1993);
AddBenzinka(5905.7690,-112.8237,12.2998);
AddBenzinka(5904.8530,-129.2558,12.2998);
CreateBank(04765.4922,-123.1113,12.4517);
CreateBank(14346.5586,917.3823,12.2172);
CreateBank(25888.8960,-136.4411,12.2998); 
Stock:

PHP код:
forward CreateBank(bankidFloat:xFloat:yFloat:z);
public 
CreateBank(bankidFloat:xFloat:yFloat:z)
{
    
BankPickup[bankid] = CreateDynamicPickup(127423xyz0,0,0,50.0);
    
CreateDynamic3DTextLabel("Banka",COLOR_GREEN_DARK,x,y,z,40,0INVALID_PLAYER_IDINVALID_VEHICLE_ID0);
    
CreateDynamicMapIcon(xyz52COLOR_BLUE0,0,0100.0MAPICON_LOCAL);
    return 
1;
}
forward AddBenzinka(Float:xFloat:yFloat:z);
public 
AddBenzinka(Float:x,Float:y,Float:z)
{
    
BenzinCount ++;
    if(
BenzinCount >= MAX_BENZIN) return print("Bol prekroceny max. pocet benzinek !");
    
CreateDynamicPickup(16861xyz0,0,0,50.0);
    
CreateDynamic3DTextLabel("Pumpa",COLOR_GREEN_DARK,x,y,z,40,0INVALID_PLAYER_IDINVALID_VEHICLE_ID0);
    
CreateDynamicMapIcon(xyz25COLOR_YELLOW,0,0,0,100.0,0);
    
BenzinPos[BenzinCount][0] = x;
    
BenzinPos[BenzinCount][1] = y;
    
BenzinPos[BenzinCount][2] = z;
    return 
true;

On a mini map, you'll see the map icons bud but nothing will appear before me.

https://prnt.sc/hffyex



Re: Pickup, 3D Text and MAP ICON - Mivco - 26.11.2017

Help me


Re: Pickup, 3D Text and MAP ICON - Wayzzar - 26.11.2017

you do not need to create forwards for that, you can create them one by one in OnGameModeInit.


Re: Pickup, 3D Text and MAP ICON - Mivco - 26.11.2017

Quote:
Originally Posted by Wayzzar
Посмотреть сообщение
you do not need to create forwards for that, you can create them one by one in OnGameModeInit.
Why would I create when it's the same


Re: Pickup, 3D Text and MAP ICON - Mivco - 26.11.2017

Help me guys :/


Re: Pickup, 3D Text and MAP ICON - Mivco - 26.11.2017

Help me