Quote:
|
Originally Posted by wonsae
hi i'm trying to add a player origin on this so the command would be
amx_createcar <target> <model>
so then the model spawns ontop of them but this wouldnt work
help plz
Code:
public purposedrop(id)
{
new itemname[64], player[32], target
read_argv(1, itemname, 31)
read_argv(3, player, 31)
}
|
Well for one, your itemname len is wrong, it should be 63, not 31 by the way you have it
__________________