error 029: invalid expression, assumed zero
#1

Код:
stock Pickup(model,type,Float:x,Float:y,Float:z,text[],color,distance)
{
	CreatePickup(model,type,x,y,z);
	Create3DTextLabel(text[],color,x,y,x,distance,0,0);
}
Reply
#2

Should be
Create3DTextLabel(text,
not
Create3DTextLabel(text[],

+
distance) in stock should be Float:distance)
Reply
#3

stock Pickup(model,type,Float,Float:y,Float:z,text[],color,Float:distance)
{
CreatePickup(model,type,x,y,z);
Create3DTextLabel(text,color,x,y,x,distance,0,0);
}
Reply
#4

Ok, thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)