Poll

Is this list worthy of a sticky?

Yes
No
Needs more commands

Author Topic: Big list O' Console Commands!  (Read 127398 times)


are there any to make a vehicle shoot a different projectile?

are there any to make a vehicle shoot a different projectile?

I don't think vehicles shoot projectiles.

Wasn't there a way to change turrets and wheels on vehicles?

I don't think vehicles shoot projectiles.
what about that tank, battleship, heavt turret, etc.?

Wasn't there a way to change turrets and wheels on vehicles?

Yeah, I really want to know this. I mean, who doesn't want a Bloko car with tank treads?

findClientByName("name").isAdmin(%adminpassword);
Makes the specified person admin. (I think)

findClientByName("name").isAdmin(%adminpassword);
Makes the specified person admin. (I think)
Oh please.

findClientByName("name").isAdmin = 1;

Makes them admin, no sound though.

Not even sure how well it works.

Oh please.

findClientByName("name").isAdmin = 1;

Makes them admin, no sound though.

Not even sure how well it works.
Hmm.
I thought it was that or something. I knew it was "isAdmin".


Code: [Select]
messageall('MsgAdminForce', "\c2PersonsName has become Super Admin (Auto)");
Fakes someone becoming auto Super, if you want you can also put it in slash command form.

Code: [Select]
function servercmdFakeAdmin(%client, %target)
{
if(%client.isadmin==1)
{messageall('MsgadminForce', "\c2"@%target@" has become Super Admin (Auto)");
}
}

Just type /FakeAdmin Person
after you plug that in console; the if statement lets only admins do it.

I got some:

Fake Kill All My Bricks
Code: [Select]
for(%i=0;%i<BrickGroup_XXXX.getCount();%i++) { BrickGroup_XXXX.getObject(%i).fakeKillBrick("0 0 0",60); }
// fill in the X's with your BLID

Force Load Add-on
Code: [Select]
e(ADD-ON NAME HERE);transmitDataBlocks();

clientCmdMissionStartPhase3();
// Do it in the order I got it in!!
// This will force load an add-on you have in your folder, careful if a player does not have this add-on it will crash them from your game

EDIT: The first one is Client Sided (I think... o.O)
But I know for a fact that the second one is Server Sided
« Last Edit: September 23, 2009, 10:20:51 PM by CrazyGoodDude »

Are there any other refresh cache commands? Just for future reference..

That first one has the same basic idea as the script I'm working on. Also editing right now. Edited.
« Last Edit: September 23, 2009, 10:10:20 PM by BobSevenSevens »

oops! I posted the force load add on wrong, I accidentally left the last add-on name I used in there, you might wanna change it.