Author Topic: What are the effects of making minigamecstar fishe always be true.  (Read 461 times)

Would:
Code: [Select]
package test{function minigamecstar fishe(%a,%b){return true;}};activatepackage(test);
Simply make anyone in a minigame be allowed to use anything of anything elses in the minigame?
Any downside?

Try it.

Downside? Don't release anything with this, and make sure there's always a default minigame.

It would also make so you can use things from people who aren't in the minigame yes.

Try it.

Downside? Don't release anything with this, and make sure there's always a default minigame.

It would also make so you can use things from people who aren't in the minigame yes.
Ya, but I'm the only one with any bricks, including spawns and items, and the minigame is default.
Also, I'm getting a lot of this line lately, but don't know if it's related or not:
Code: [Select]
Add-Ons/Gamemode_TeamDeathmatch/Support_Gamemodes.cs (2961): Unknown command BottomPrint.
  Object (55660) AIPlayer -> Player -> Player -> Player -> Player -> Player -> Player -> Player -> Player -> ShapeBase -> ShapeBase -> ShapeBase -> ShapeBase -> ShapeBase -> ShapeBase -> ShapeBase -> GameBase -> SceneObject -> NetObject -> SimObject

That error may be caused if a bot is in a trigger. Not sure but it's my best guess.

That error may be caused if a bot is in a trigger. Not sure but it's my best guess.
I actually think it might have to do with the sentires or rc sapper add-ons.


Bushido made a player object its own client then included in the minigame instead of the AIConnection (fake bot client) you're supposed to use for that kind of thing. TDM loops through everybody in the minigame to give e.g. score updates. This causes an error every minute for every sentry that exists.

Code: [Select]
//These stop console spam.
//If you use these in something else, I'm sorry. Comment them out.
function AIPlayer::incScore(%this, %obj)
{
//do nothing.
}

function AIPlayer::onDeath(%this, %obj, %source)
{
//do nothing.
}
Then this didn't help i guess?
Since he included that to prevent console spam.

Bottom and center prints.