02.06.2013, 18:02
Hi, So I'm making my own house system for my rp server and have a problem with 3d text labels, I can't seem to delete this one, Here's the code.
createpart
deletepart
and it comes up with an error saying C:\Users\Jueix\Desktop\Sa-mp\gamemodes\newrp.pwn(3864) : error 035: argument type mismatch (argument 1)
createpart
pawn Код:
new string[256];
format(string, sizeof(string), "House For Sale /n Price: %d/n TLS: %d", hInfo[houseid][Cost], Tls);
HousePickup[houseid] = CreatePickup(1273, 23, iconX, iconY, iconZ);//not bought
HouseLabel[houseid] = Create3DTextLabel(string, 0x008080FF, iconX,iconY,iconZ, 10.0, 0, 1);
pawn Код:
Delete3DTextLabel(HouseLabel[houseid]);