[SOLVED] weapon code help fix =D
hajja =D
and this is my code:
Code:
self thread SpawnWeapon(undefined,"cheytac_fmj_xmags_mp","Intervention",Location+(60,90,25),0);
well it gives me bad Syntax :|
/reply =D You haven't defined what "Location" is on this:
self thread SpawnWeapon(undefined,"cheytac_fmj_xmags_mp","Inte rvention",Location+(0,0,0),0);
Location has to replaced with the location where the weapon if to be spawned like this:
self thread SpawnWeapon(undefined,"cheytac_fmj_xmags_mp","Inte rvention",(123,456,789)+(0,0,0),0);
The numbers you replaced was the angles, not the location..
self thread SpawnWeapon(undefined,"cheytac_fmj_xmags_mp","Inte rvention",(4738,-5596,2640)+(0,0,0),0);
works for me. Ur thread needs another } at the bottom.