Author Topic: Finding these %client.isAdmin(), %client.isSuperAdmin(), and %client.isHost()  (Read 1417 times)

Where would i beable to find more of these things booleans? Or anything of this such.
%client.isAdmin, %client.isSuperAdmin, %client.isHost
« Last Edit: July 13, 2012, 01:51:45 PM by tyler0 »

What do you mean?

Isn't it just %client.isAdmin %client.isSuperAdmin and if(%client.BL_ID == getNumKeyID()) ?

Booleans, not functions.
no brackets.

Also, I don't think .isHost is default, i'm pretty sure that comes with VCE.

To find more things like that, do a %client.dump(); to see everything about the client.

Everyone keeps saying this lol It doesn't work for me:

Quote
==>%client.dump();

<input> (0): Unable to find object: '' attempting to call function 'dump'
BackTrace: ->ConsoleEntry::eval

Everyone keeps saying this lol It doesn't work for me:

You have to put a client object reference in place of %client.

You have to put a client object reference in place of %client.
What does that mean? lol

What does that mean? lol
%client needs to be an actual client.
like use %client = findclientbyname(name); %client.dump();

Where would i beable to find more of these things booleans? Or anything of this such.
%client.isAdmin, %client.isSuperAdmin, %client.isHost
findClientByName("tyler").dump();

This will show you all properties and methods associated with the GameConnection object.

Cool! Thank you guys for all your help!