Show Posts

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.


Messages - Advanced Bot

Pages: 1 ... 266 267 268 269 270 [271] 272 273 274 275
4051
Help / Re: How do you make Mini-Games?
« on: November 23, 2012, 09:48:07 PM »
There is also slayer. If you look at my profile, and look at the BL_ID, you will know who I am, I can help you on RTB if you have any other problems.

4052
Help / Blockland crashes after music list is executed
« on: November 23, 2012, 09:46:39 PM »
When I hosted my server, I had this crashing problem for about 2 weeks. I have deleted my cache and my latestManifest file. Still crashing. So then I restore the deleted files. Still has problems. This happens when the music pref is done executed..Here is the console link http://www.mediafire.com/?rxeuhs97sbsuto2

4053
Modification Help / Re: Player Emitter
« on: November 20, 2012, 05:40:47 PM »
So would it be %emote instead of %emitter?

4054
Modification Help / Player Emitter
« on: November 20, 2012, 05:32:34 PM »
Is there a way to make a setplayeremitter event? If so, how?..This is what I got done. I'm not sure if it's right..

Code: [Select]
registerOutputEvent(Player,setPlayerEmitter,"dataBlock Emitter",0);

package playerEmitter
{
 function Player::emote(%this,%emote,%skipSpamProtect)
 {
   %this.emote(%emote);
  Parent::emote(%this,%emote,%skipSpamProtect);
 }
};
activatePackage(playerEmitter);
(EDITED)

4055
Modification Help / Re: Radar Help
« on: November 15, 2012, 05:38:15 PM »
I will just forget about this and make some other addon...Server sided...

4056
Modification Help / Re: Radar Help
« on: November 14, 2012, 10:55:38 PM »
Oh. I didn't know about that.

4057
Modification Help / Radar Help
« on: November 14, 2012, 10:43:45 PM »
I am trying to edit the compass, it works, but the players positions are not showing up..

Code: [Select]
if(!$CompassInitiated)
[Gui script is hidden because it is not needed to be seen]

function Compass_ExteriorInit()
{
//Mods go here
}
package CompassClient
{
function disconnect(%a)
{
Parent::disconnect(%a);
for(%i=0;%i<$TrackWaypoints;%i++)
{
$TrackWaypointDot[%i].delete();
$TrackWaypoint[%i] = "";
$TrackWaypointDot[%i] = "";
}
$TrackWaypoints = 1;
$CompassServer = 1;
}
function clientcmdchatmessage(%client,%a,%b,%taggedString,%pretag,%name,%posttag,%message,%i)
{
Parent::clientcmdchatmessage(%client,%a,%b,%taggedString,%pretag,%name,%posttag,%message,%i);
if(getWord(%message,0) $= " spawned.")
{
%point = getwords(%message,1);
%pos = getwords(%point,1);
%name = getword(%point,0);
for(%i=0;%i<$TrackWaypoints;%i++)
{
if(getwords($TrackWaypoint[%i],1) $= %pos || getword($TrackWaypoint[%i],0) $= %name)
{
return;
}
}
$ClientAddPoint = 1;
clientcmdcom_addwaypoint(%point);
$ClientAddPoint = 0;
}
}
function NMH_Type::send(%this)
{
%txt = %this.getValue();
if(getword(%txt,0) $= " spawned.")
{
%name = getwords(%txt,1);
for(%i=0;%i<getwordcount(%name);%i++)
{

if(getword(%name,%i) $= "+")
{
%newname = getwords(%name,%i+1);
%name = getwords(%name,0,%i-1);
break;
}
}
%name = strreplace(%name," ","-");
if(%newname !$= "")
{
%newname = strreplace(%newname," ","-");
}
for(%i=0;%i<$TrackWaypoints;%i++)
{
if(getword($TrackWaypoint[%i],0) $= %name)
{
%name = getword($TrackWaypoint[%i],0);
if(!$TrackWaypointClient[%i])
{
NewChatSO.addLine("\c0The waypoint \c2" @ strreplace(%name,"-"," ") SPC "\c0is a serverside waypoint, and cannot be shared.");
canvas.popDialog(NewMessageHud);
return;
}
%f = 1;
%pos = getwords($TrackWaypoint[%i],1);
}
}
if(%f)
{
if(%newname !$= "")
{
%txt = " spawned." SPC %newname SPC %pos;
} else {
%txt = " spawned." SPC %name SPC %pos;
}
%this.setValue(%txt);
} else {
NewChatSO.addLine("\c0No waypoint was found using the name\c2" SPC strreplace(%name,"-"," ") @ "\c0.");
canvas.popDialog(NewMessageHud);
return;
}
}
Parent::send(%this);
}
};
ActivatePackage(CompassClient);
$pi = 3.14159;
function Compass_Update()
{
if(!isObject(serverconnection))
{
return;
}
if(!isobject(serverconnection.getcontrolobject()) || !$Compass::Show)
{
CompassH.setVisible(0);
return;
}
%r=serverconnection.getcontrolobject().gettransform();
%rx = getword(%r, 0);
%ry = getword(%r, 1);
%r= 2 * $pi - (getword(%r,5) * getword(%r,6));
%rootcos=mcos(%r);
%rootsin=msin(%r);
%compassposx = getword(CompassH_IMG.position, 0) + (getword(CompassH_IMG.extent, 0) / 2);
%compassposy = getword(CompassH_IMG.position, 1) + (getword(CompassH_IMG.extent, 1) / 2);
%compassNtxtsizex=16/2;
%compassNtxtsizey=36/2;
CompassH_N.resize((45 * mcos(%r + $pi * 1.5) + %compassposx ) - %compassNtxtsizex, (45 * msin(%r + $pi * 1.5) + %compassposy) - %compassNtxtsizey, 25, 36);
for(%i=1;%i<$TrackWaypoints;%i++)
{
%px = %rx - getword($TrackWaypoint[%i],1);
%py = %ry - getword($TrackWaypoint[%i],2);
%pdist = msqrt((%py * %py) + (%px * %px));
if(!isObject($TrackWaypointDot[%i]))
{
$TrackWaypointDot[%i] = new GuiTextCtrl() {
profile = "BlockChatTextSize10Profile";
horizSizing = "right";
vertSizing = "bottom";
position = "320 240";
extent = "8 36";
minExtent = "8 2";
visible = "1";
text = "\c2.";
maxLength = "255";
};
CompassH.add($TrackWaypointDot[%i]);
}
$TrackWaypointDot[%i].resize((25 * mcos(matan(%py, %px) - %r + $pi) * (-1 * mpow(1.07, (%pdist * -0.2)) + 1) + %compassposx) - 4, (25 * msin(matan(%py, %px) - %r) * (-1 * mpow(1.07, (%pdist * -0.2)) + 1) + %compassposy) - 26, 25, 36);
}
$CompassUpdate = schedule(50,0,Compass_Update);
}
function Compass_Toggle(%x)
{
if(%x)
{
$Compass::Show = !$Compass::Show;
if($Compass::Show)
{
CompassH.position = (getword(playgui.extent,0)-128) SPC (getword(playgui.extent,1)-256);
CompassH.setVisible(1);
Compass_Update();
} else {
cancel($CompassUpdate);
CompassH.setVisible(0);
}
}
}
function Compass_WaypointGui(%x)
{
if(%x)
{
if(CompassWaypointGUI.isAwake())
{
canvas.popDialog(CompassWaypointGUI);
} else {
canvas.pushDialog(CompassWaypointGUI);
}
}
}
function clientcmdcom_addwaypoint(%str,%evented)
{
%name = getword(%str,0);
if(strpos(%name,"+") != -1)
{
return;
}
%pos = getwords(%str,1);
for(%i=1;%i<$TrackWaypoints;%i++)
{
if(getword($TrackWaypoint[%i],0) $= %name)
{
if(%evented && $TrackWaypointClient[%i])
{
return;
}
$TrackWaypoint[%i] = %name SPC %pos;
%found = 1;
}
}
if(!%found)
{
$TrackWaypointClient[$TrackWaypoints] = $ClientAddPoint;
$TrackWaypointEvent[$TrackWaypoints] = %evented;
$TrackWaypoint[$TrackWaypoints] = %name SPC %pos;
$TrackWaypointDot[$TrackWaypoints] = new GuiTextCtrl() {
profile = "BlockChatTextSize10Profile";
horizSizing = "right";
vertSizing = "bottom";
position = "320 240";
extent = "8 36";
minExtent = "8 2";
visible = "1";
text = "\c2.";
maxLength = "255";
};
CompassH.add($TrackWaypointDot[$TrackWaypoints]);
$TrackWaypoints++;
}
if(CompassWaypointGUI.isAwake())
{
CompassWaypointGUI.refreshList();
}
}
function clientcmdcom_remwaypoint(%name,%evented)
{
for(%i=1;%i<$TrackWaypoints;%i++)
{
if(getword($TrackWaypoint[%i],0) $= %name)
{
if(%evented && $TrackWaypointClient[%i])
{
return;
}
%found = 1;
CompassH.remove($TrackWaypointDot[%i]);
$TrackWaypointDot[%i].delete();
}
if(%found)
{
$TrackWaypoint[%i] = $TrackWaypoint[%i+1];
$TrackWaypointDot[%i] = $TrackWaypointDot[%i+1];
$TrackWaypointClient[%i] = $TrackWaypointClient[%i+1];
}
}
if(%found)
{
$TrackWaypoints--;
}
if(CompassWaypointGUI.isAwake())
{
CompassWaypointGUI.refreshList();
}
}
function CompassWaypointGUI::onWake(%gui)
{
CompassWaypointGUI_Frame.position = getword(PlayGUI.extent,0) - (getword(CompassWaypointGUI_Frame.extent,0) + 72) SPC 12;
CompassWaypointGUI_Compass.setValue($Compass::Show);
CompassWaypointGUI.refreshList();
}
function CompassWaypointGUI_Add::onWake(%gui)
{
%pos = CompassWaypointGUI_Frame.position;
CompassWaypointGUI_Add_Name.setValue("");
CompassWaypointGUI_Add_Frame.position = getWord(%pos,0) + 25 SPC getword(%pos,1) + 16;
}
function CompassWaypointGUI_File::onWake(%gui)
{
%pos = CompassWaypointGUI_Frame.position;
CompassWaypointGUI_File_Filename.setValue("");
CompassWaypointGUI_File_Frame.position = getword(%pos,0) + 25 SPC getword(%pos,1) + 16;
}
function CompassWaypointGUI::refreshList(%gui)
{
CompassWaypointGUI_List.clear();
CompassWaypointGUI_List.addRow(1,"None");
for(%i=1;%i<$TrackWaypoints;%i++)
{
if($TrackWaypointClient[%i])
{
%ss = "";
} else {
%ss = "*";
}
if($TrackWaypointEvent[%i])
{
%ss = "**";
}
CompassWaypointGUI_List.addRow(%i+1,strreplace(getword($TrackWaypoint[%i],0),"-"," ") SPC %ss);
}
CompassWaypointGUI_BTN_Add.setActive(1);
CompassWaypointGUI_BTN_Remove.setActive(1);
CompassWaypointGUI_BTN_Update.setActive(1);
}
function CompassWaypointGUI::onSleep(%gui)
{
%gui.setCompass();
}
function CompassWaypointGUI::setCompass(%gui)
{
$Compass::Show = CompassWaypointGUI_Compass.getValue();
if($Compass::Show)
{
CompassH.position = (getword(playgui.extent,0)-128) SPC (getword(playgui.extent,1)-256);
CompassH.setVisible(1);
Compass_Update();
} else {
cancel($CompassUpdate);
CompassH.setVisible(0);
}
}

function CompassWaypointGUI::setTracked(%gui)
{
%id = CompassWaypointGUI_List.getSelectedID();
if(isObject($TrackWaypointDot[$TrackedPoint]))
{
$TrackWaypointDot[$TrackedPoint].setText("\c2.");
}
if(%id == 1)
{
return;
}
$TrackedPoint = %id - 1;
$TrackWaypointDot[%id - 1].setText("\c0.");
}
function CompassWaypointGUI::addWaypoint(%gui)
{
canvas.pushDialog(CompassWaypointGUI_Add);
canvas.popDialog(CompassWaypointGUI);
}
function CompassWaypointGUI::updateWaypoint(%gui)
{
%id = CompassWaypointGUI_List.getSelectedID() - 1;
if($TrackWaypointClient[%id])
{
%pos = ServerConnection.getControlObject().getTransform();
%x = getword(%pos,0);
%y = getword(%pos,1);
$TrackWaypoint[%id] = getword($TrackWaypoint[%id],0) SPC %x SPC %y;
} else {
if($CompassServer)
{
commandtoserver('com_addserverwaypoint',getword($TrackWaypoint[%id],0));
}
}
CompassWaypointGUI.refreshList();
}
function CompassWaypointGUI::removeWaypoint(%gui)
{
%id = CompassWaypointGUI_List.getSelectedID() - 1;
if($TrackWaypointClient[%id])
{
clientcmdcom_remwaypoint(getword($TrackWaypoint[%id],0));
} else {
commandtoserver('com_remserverwaypoint',getword($TrackWaypoint[%id],0));
}
CompassWaypointGUI.refreshList();
}
function CompassWaypointGUI::addWaypointF(%gui,%name,%server)
{
canvas.popDialog(CompassWaypointGUI_Add);
%name = strreplace(%name," ","-");
if(%server)
{
if($CompassServer)
{
commandtoserver('com_addserverwaypoint',%name);
}
canvas.pushDialog(CompassWaypointGUI);
} else {
for(%i=1;%i<$TrackWaypoints;%i++)
{
if(getword($TrackWaypoint[%i],0) $= %name)
{
if(!$TrackWaypointClient[%i])
{
commandtoserver('com_addserverwaypoint',%name);
canvas.pushDialog(CompassWaypointGUI);
return;
}
}
}
$ClientAddPoint = 1;
%pos = ServerConnection.getControlObject().getTransform();
%x = getword(%pos,0);
%y = getword(%pos,1);
clientcmdcom_addwaypoint(%name SPC %x SPC %y);
$ClientAddPoint = 0;
canvas.pushDialog(CompassWaypointGUI);
}
}
function CompassWaypointGUI::saveLoad(%gui)
{
canvas.popDialog(CompassWaypointGUI);
canvas.pushDialog(CompassWaypointGUI_File);
}
function CompassWaypointGUI::saveWaypoints(%gui,%filename)
{
%filename = "config/client/WP/" @ filebase(%filename) @ ".txt";
%FO = new FileObject();
if(%FO.openForWrite(%filename))
{
for(%i=1;%i<$TrackWaypoints;%i++)
{
if($TrackWaypointEvent[%i])
{
continue;
}
%FO.writeline($TrackWaypointClient[%i] SPC $TrackWaypoint[%i]);
}
%FO.close();
}
%FO.delete();
canvas.popDialog(CompassWaypointGUI_File);
canvas.pushDialog(CompassWaypointGUI);
}
function CompassWaypointGUI::loadWaypoints(%gui,%filename)
{
%filename = "config/client/WP/" @ filebase(%filename) @ ".txt";
%FO = new FileObject();
if(%FO.openForRead(%filename))
{
for(%i=1;%i<$TrackWaypoints;%i++)
{
$TrackWaypointDot[%i].delete();
$TrackWaypointDot[%i] = "";
$TrackWaypoint[%i] = "";
}
$TrackWaypoints = 1;
if($CompassServer)
{
commandtoserver('com_clearwaypoints');
}
while(!%FO.isEOF())
{
%line = %FO.readline();
%server = getword(%line,0);
%waypoint = getwords(%line,1);
if(!%server)
{
if($CompassServer)
{
commandtoserver('com_loadwaypoint',%waypoint);
}
} else {
$ClientAddPoint = 1;
clientcmdcom_addwaypoint(%waypoint);
$ClientAddPoint = 0;
}
}
%FO.close();
}
%FO.delete();
canvas.popDialog(CompassWaypointGUI_File);
canvas.pushDialog(CompassWaypointGUI);
}

function clientcmdcom_ping(%x)
{
echo("   " @ %x SPC "Compass - You have the power! Telling the server you have the power...");
commandtoserver('com_pong',%x);
$CompassServer = 1;
}

4058
Modification Help / Re: Error with messageall
« on: November 06, 2012, 08:29:52 PM »
I can understand a function. I new there was a missing bracket. I added it before you posted a new code. But now there is a new error. This is getting annoying lol

Code: [Select]
package NameChecker
{
    function GameConnection::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb)
  {
Parent::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb);
messageAll('', "<color:FFFFFF>Connection request from:<color:FFFF00>" SPC %client.getAddress());
  }

function GameConnection::onConnect(%client, %name)
  {
Parent::OnConnect(%client, %name);
messageAllExcept(%client, -1, '', "\c1%1 has connected with an IP Adress from" SPC %client.getAddress() SPC".", %client.name, %client))##;##
messageClient('', "<color:FFFFFF>Your ping is<color:FF00FF>" SPC %client.getPing()"MS<color:FFFFFF>.");
  }
};
activatepackage(NameChecker);

4059
Modification Help / Re: Error with messageall
« on: November 06, 2012, 08:19:53 PM »
Another error >.<

Code: [Select]
package NameCheck
{
    function GameConnection::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb)
  {
Parent::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb);
messageAll('', "<color:FFFFFF>Connection request from:<color:FFFF00>" SPC %client.getAddress());

function #G#ameConnection::onConnect(%client, %name)
  {
Parent::OnConnect(%client, %name);
messageAllExcept(%client, -1, '', "\c1%1 has connected with an IP Adress from" SPC %client.getAddress() SPC".", %client.name, %client));
messageClient('', "<color:FFFFFF>Your ping is<color:FF00FF>" SPC %client.getPing()"MS<color:FFFFFF>.");
  }
};
activatepackage(NameCheck);

4060
Modification Help / Re: Error with messageall
« on: November 06, 2012, 08:11:39 PM »
Wow, is this even possible? >.< Well, I guess I will try to scramble the code a little....

EDIT: I guess I will try to scramble the code a little....

4061
Modification Help / Re: Error with messageall
« on: November 06, 2012, 08:07:35 PM »
Code: [Select]
package NameCheckRequest

{

    function GameConnection::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb)

  {

^Parent::onConnectRequest;##
##
^messageAll('', "<color:FFFFFF>Connection request from:<color:FFFF00>" SPC %client.getAddress());

  }

};

activatepackage(NameCheckRequest);

Now there is a new error

4062
Modification Help / Re: Error with messageall
« on: November 06, 2012, 08:00:20 PM »
I have already tried that and I still have that same error.

4063
Modification Help / Error with messageall
« on: November 06, 2012, 07:52:17 PM »
Code: [Select]
package NameCheckRequest
{
    function GameConnection::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb)
  {
Parent::onConnectRequest
messageAll('', '<color:FFFFFF>Connection request from:<color:FFFF00>' SPC %client.getAddress());
  }
};
activatepackage(NameCheckRequest);

package NameCheckSuccess
{
function GameConnection::onConnect( %client, %name )
  {
Parent::OnConnect
messageAllExcept(%client, -1, '', '\c1%1 has connected with an IP Adress from' SPC %client.getAddress() SPC'.', %client.name, %client));
messageClient('', "<color:FFFFFF>Your ping is<color:FF00FF>" SPC %client.getPing()"MS<color:FFFFFF>.");
  }
};
activatepackage(NameCheckSuccess);

Somehow, there is a tiny error, here it is:
package NameCheckRequest
{
    function GameConnection::onConnectRequest(%this, %addr, %lan, %name, %pre, %suf, %rtb)
  {
   Parent::onConnectRequest
   messageAll(#'#', '<color:FFFFFF>Connection request from:<color:FFFF00>' SPC %client.getAddress());
  }
};

How can I fix that?

4064
Help / Re: Lights / Emitters Quota?
« on: November 05, 2012, 09:33:15 PM »
When you are going to start a game, In the advanced option, it should have all these options.

4065
Help / Re: Blender .dts exporter Problems
« on: November 05, 2012, 09:31:47 PM »
Oh oops, sorry, sometimes I seem  to not pay attention ._.

Pages: 1 ... 266 267 268 269 270 [271] 272 273 274 275