04.07.2014, 20:13
Hello, my question is, as I do a command to fill the stock of objects?
How I can do this?
Hello, my question is, as I do a command to fill the stock of objects?
CAUTION: Use
Here I show that by a timmer that is filled every 30 minutes, I want to make a command that the stock is full and also the label information is updated
// Onplayerupdate
I Use ZCMD , please help.
How I can do this?
Hello, my question is, as I do a command to fill the stock of objects?
CAUTION: Use
Код:
Update3DTextLabelText
Код:
new CantidadM = 282000;
Код:
new Text3D:minero;
Код:
minero = Create3DTextLabel("282.000 materiales disponibles para juntar minas", -1,2435.5171,-972.6533,79.3923, 20.0, 0 , 4);
Код:
forward CantidadMinas(); public CantidadMinas() { new string[256]; CantidadM --; format(string,sizeof(string),"%d materiales disponibles para juntar minas",CantidadM); Update3DTextLabelText(minero, 0xFFFFFFFF, string); return 1; }
Код:
forward CamionM(); public CamionM() { new string[256]; CantidadM = 282000; format(string,sizeof(string),"%d materiales disponibles para juntar minas",CantidadM); Update3DTextLabelText(minero, 0xFFFFFFFF, string); return 1; }
Код:
SetTimer("CamionM",1800000,1);