I actually saw this error when you first posted(I didnt know it was an error then)
Quote:
|
Originally Posted by Batman/Gorlag
Code:
public fire_disk(id)
{
//Makes an array of origin in the (x,y,z) coordinate system.
new origin[3]
//Makes an array of velocity, specifically in the (x,y,z) coordinate system
new velocity[3]
get_user_origin(id, origin, 0)
create_disk(id, origin, velocity)
}
|
Notice anything fishy?
You make a new velocity then dont set it to anything and just send it off (its still set to nothing)