Pickup, 3D Text and MAP ICON
#1

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
Reply
#2

Help me
Reply
#3

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

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
Reply
#5

Help me guys :/
Reply
#6

Help me
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)