19.12.2016, 08:39
A position or so called coordinate is in the form of floats, what you have defined them as is as strings. Difference by these two is that floats are decimal such as:
1.00005
and a string is text.. such as:
"Hello world!"
If you look at ****** maps and enter a coord, you'll notice it'll show as a float. Here's a fixed code:
1.00005
and a string is text.. such as:
"Hello world!"
If you look at ****** maps and enter a coord, you'll notice it'll show as a float. Here's a fixed code:
PHP код:
enum mapinfos
{
mapid = 1,
NamaMap[64],
Float:HumanX,
Float:HumanY,
Float:HumanZ,
Float:ZombieX,
Float:ZombieY,
Float:ZombieZ
};