View Single Post
  #1  
Old 06-29-2009, 02:42 PM
Yeormom
Discordant
 
Join Date: Apr 2004
Location: 127.0.0.1
Posts: 402
Default

Target the player and use the command #bind

This command calls the following code, in case you don't have it for some reason.
Code:
void command_bind(Client *c, const Seperator *sep)
{
	if (c->GetTarget() != 0 ) {
		if (c->GetTarget()->IsClient())
			c->GetTarget()->CastToClient()->SetBindPoint();
		else
			c->Message(0, "Error: target not a Player");
	 } else
		c->SetBindPoint();
}
__________________
Yeorwned
Bane of Life [Custom Classic/PvP]
Reply With Quote