
well i have a simpler question this time, just wondering if there is a max velocity for object to travel at. i seem to be in a bit of a hole here trying to make a projectile firing sniper rifle, i mean it works and quite well, but the "bullet" fires at a speed i cannot seem to increase. well thats it now, unless you can help with my other problem, a bit more complex. i made a mdl spawn infront of the player as a scope for the sniper rifle, works great thanks to wazat

not really my code just an example:roll:
scopeCheck =
{
if(self.owner.scoped == 1)
return;
if (self.owner.scoped == 2) called when shoots gun
self.owner.zoomview = 1;
remove(self);
};
make scope =
}
scope = spawn();
scope.viewclientWHATEVER = self;
blah blah;
scope.owner = self;
scope.scoped = 1;
scope.think = scopeCheck;
scope.nextthink = time + 0.1;
};
any ideas? mail me for more specifics i know this is poor lol
one more thing lol sorry if this is explained in dpextension, but limiting player movement speed, a lil help? hah im guna get banned from this forum for all my questions..
-Root one