Author Topic: The executing console command  (Read 1479 times)

Halp me with dis. It is a problem. I need a guide for force-loading a file into my server (Gamemode_EndlessZombies.zip). Guides are needed!

exec("Add-Ons/GameMode_EndlessZombies/server.cs"); transmitDatablocks();. Not sure if the latter is needed, but if the addon contains datablocks then you need to do it.

exec("Add-Ons/GameMode_EndlessZombies/server.cs"); transmitDatablocks();. Not sure if the latter is needed, but if the addon contains datablocks then you need to do it.
What is this? :|

What is this? :|

former = first thing
latter = second thing

So the latter in that case would be "transmitDatablocks();".

former = first thing
latter = second thing

So the latter in that case would be "transmitDatablocks();".
I tried and the file needed all default weps and I have them, and it needs Slayer and I have it. WHat happens then?

I tried and the file needed all default weps and I have them, and it needs Slayer and I have it. WHat happens then?

What did it say exactly?

I also have the horse and tank and doesn't let me.


Here's what CONSOLE said exactly:

Quote
ERROR: Gamemode_EndlessZombies - Required add-on Gamemode_Slayer not found![/color]
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Weapon_Bow not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Weapon_Sword not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Weapon_Gun not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Weapon_Guns_Akimbo not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Weapon_Rocket_Launcher not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Vehicle_Horse not found!
Backtrace: ->ConsoleEntry::eval

ERROR: Gamemode_EndlessZombies - Required add-on Vehicle_Tank not found!
Backtrace: ->ConsoleEntry::eval

What the hell?

Here's what CONSOLE said exactly:


What the hell?
Means the add-ons arn't enabled on the server.
Code: [Select]
exec("Add-Ons/Weapon_Sword/server.cs");
exec("Add-Ons/Weapon_Gun/server.cs");
exec("Add-Ons/Weapon_Guns_Akimbo/server.cs");
exec("Add-Ons/Weapon_Rocket_Launcher/server.cs");
exec("Add-Ons/Vehicle_Horse/server.cs");
exec("Add-Ons/Vehicle_Tank/server.cs"); transmitDatablocks();
Copy all that to your clipboard (Highlight it then Ctrl C)
enter in console this

Code: [Select]
eval(getclipboard());

Means the add-ons arn't enabled on the server.
Code: [Select]
exec("Add-Ons/Weapon_Sword/server.cs");
exec("Add-Ons/Weapon_Gun/server.cs");
exec("Add-Ons/Weapon_Guns_Akimbo/server.cs");
exec("Add-Ons/Weapon_Rocket_Launcher/server.cs");
exec("Add-Ons/Vehicle_Horse/server.cs");
exec("Add-Ons/Vehicle_Tank/server.cs"); transmitDatablocks();
Copy all that to your clipboard (Highlight it then Ctrl C)
enter in console this

Code: [Select]
eval(getclipboard());

That I don't know how to do. This is something I need a guide for (adding items to clipboard)

That I don't know how to do. This is something I need a guide for (adding items to clipboard)
If you don't know how to do that, how did you executate the first thing?

Type all of the executives in the console IN ONE LINE from what iStarzy said and type in transmitDataBlocks(); at the very end
Now press enter.

That I don't know how to do. This is something I need a guide for (adding items to clipboard)
it's literally just copy from copy and paste
that's what the clipboard is

FYI though, that error means that the add-on isn't installed, not that it's not enabled.

That I don't know how to do. This is something I need a guide for (adding items to clipboard)

The answer is right next to it lol

(protip: Highlight the code, then hit Ctrl C, that will add it to your clipboard.)