Author Topic: serverCmd Called when saving w/ events  (Read 1403 times)

After some searching around things, I've uncovered some things.
[ul]
  • There is a serverCmd called when someone tries to save with password
[/ul]
Anyone have the serverCmd List ( i think kalphiter had one )
Please post any information about this, thanks.

Also: Please don't say "go to console type in serverCmd and press tab"
I know you can do that - that takes a while, and I would rather not go through that.

Please explain what you are talking about better. I know you want to know the server command for saving something, but what?

Please explain what you are talking about better. I know you want to know the server command for saving something, but what?
there is a serverCmd that requests the event data for the bricks when saving bricks (If that was not obvious enough)
I want to know it.

It could be SaveBricks_Save(); or SaveBricks_StartInfoDownload(); or clientCmdRegisterInputEvent(Lots-O-Stuff); or clientCmdRegistOutputEvent(Stuff); or clientCmdTransmitEvent();

If you don't have any add-on constantly working in the background, you could try trace(1) (and trace(0) when you're done), but if even one thing periodically schedules something, or is responding to a server, it tends to really spam you with logs.

I know what you're trying to make and I would advise you don't.

I know what you're trying to make and I would advise you don't.
just for private uses, why not.
It could be SaveBricks_Save(); or SaveBricks_StartInfoDownload(); or clientCmdRegisterInputEvent(Lots-O-Stuff); or clientCmdRegistOutputEvent(Stuff); or clientCmdTransmitEvent();
I hope you know all of those are client commands.
Incase you didn't know, serverCmd is a function written and worked in the server.

why not
Because (assuming you're planning on blocking it so people can't save)
Quote from: Badspot
If you start doing gay stuff to break my game, I'm going to start banning you from the master server.  This is a war you don't want to start because I'm the only one with nukes. 

He probably wants to make it so that if somebody calls that command they get kicked from the server... not a good idea.