286
Suggestions & Requests / .Obj to .blb convertor
« on: November 04, 2011, 03:49:41 PM »
Title says all
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
function AIplayer::aimAtPlayerByName(%this, %playerName)
{
%player = findClientByName(%playerName).player;
//Edit
if(isObject(%player))
{
%this.setAimObject(%player);
}
}// VERSION 1.0 //
RegisterOutputEvent(AIPlayer, "aimAtPlayerByName", "String 20 20");
$MoreBotEventsLoaded = true;
exec("./input.cs");
//////////////////
//Event_MoreBotz//
//////////////////
//By: Zmaster587 ( ID )
// VERSION 1.0 //
//error("ERROR: Event_MoreBotz - required add-on Event_Bots not found");
if(!$MoreBotEventsLoaded)
{
RegisterOutputEvent(AIPlayer, "aimAtPlayerByName", "String 20 20");
$MoreBotEventsLoaded = true;
}
Package Morebot
{
function AIplayer::aimAtPlayerByName(%this, %playerName)
{
%player = findClientByName(%playerName);
if(%player != NULL)
{
%this.setAimObject(%player, Point3F(0,0,0));
}
}
}
activatePackage(Morebot);
= IDK
-
= broccoli 
