Author Topic: Bot Event v11 spam in the console  (Read 795 times)

Code: [Select]
Add-Ons/Event_Bots/AI.cs (216): AIPlayer::setMoveDestination - wrong number of arguments.
Add-Ons/Event_Bots/AI.cs (216): usage: (Point3F goal)Tells the AI to move to the location provided.
BackTrace: ->Player::BotEvents_AIsched
repent
I got it from this add-on, they need to fix.
http://forum.blockland.us/index.php?topic=215564.0

Code: [Select]
Add-Ons/Event_Bots/AI.cs (216): AIPlayer::setMoveDestination - wrong number of arguments.
Add-Ons/Event_Bots/AI.cs (216): usage: (Point3F goal)Tells the AI to move to the location provided.
BackTrace: ->Player::BotEvents_AIsched
repent
I got it from this add-on, they need to fix.
http://forum.blockland.us/index.php?topic=215564.0


aslo this
Code: [Select]
Add-Ons/Event_2DCamera/players.cs (48): Unable to find object: '' attempting to call function 'schedule'
BackTrace: ->ServerLoadSaveFile_Tick->fxDTSBrick::setVehicle->[BotEvents]fxDTSBrick::spawnVehicle->fxDTSBrick::spawnVehicle->[Event_2DCamera]armor::onNewDataBlock

That mod is riddled with bugs and is not to be used anymore. This is why Badspot replaced them with his own.

Code: [Select]
Add-Ons/Event_Bots/AI.cs (216): AIPlayer::setMoveDestination - wrong number of arguments.
Add-Ons/Event_Bots/AI.cs (216): usage: (Point3F goal)Tells the AI to move to the location provided.
BackTrace: ->Player::BotEvents_AIsched
repent
I got it from this add-on, they need to fix.
http://forum.blockland.us/index.php?topic=215564.0
Change line 216 from
Code: [Select]
%this.setMoveDestination(%dest, false);
To
Code: [Select]
%this.setMoveDestination(%dest);

aslo this
Code: [Select]
Add-Ons/Event_2DCamera/players.cs (48): Unable to find object: '' attempting to call function 'schedule'
BackTrace: ->ServerLoadSaveFile_Tick->fxDTSBrick::setVehicle->[BotEvents]fxDTSBrick::spawnVehicle->fxDTSBrick::spawnVehicle->[Event_2DCamera]armor::onNewDataBlock
Change line 48 from
Code: [Select]
%obj.client.schedule(0, set2DCamera, %direction, %obj.dataBlock.cameraPitch2D, %obj.dataBlock.cameraDistance2D);
To
Code: [Select]
if(isObject(%obj.client))
{
%obj.client.schedule(0, set2DCamera, %direction, %obj.dataBlock.cameraPitch2D, %obj.dataBlock.cameraDistance2D);
}

New issued error

Add-Ons/Event_2DCamera/players.cs (48): Unable to find object: '' attempting to call function 'schedule'
BackTrace: ->[InventorySlotAdjustment]Player::changeDatablock->Player::changeDatablock->[BotEvents]AIPlayer::setDatablock->[Event_2DCamera]Player::setDatablock->[AltDatablocks]ShapeBase::setDatablock->[Event_2DCamera]armor::onNewDataBlock


Add-Ons/Event_2DCamera/players.cs (60): Unable to find object: '' attempting to call function 'schedule'
BackTrace: ->[InventorySlotAdjustment]Player::changeDatablock->Player::changeDatablock->[BotEvents]AIPlayer::setDatablock->[Event_2DCamera]Player::setDatablock