Blue542 Posted August 10, 2012 Share Posted August 10, 2012 I was wondering how i can add more maps to the objectccylcle.cfg because it has some sort of code, and i dont know how to make that code, also how can add max admin to myself on server? Because the admin levels also use a code and i was wondering what was the code because i dont want to keep doing the commands in console. **Also my server wont let anybody connect including me, any fix? Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 10, 2012 Management Share Posted August 10, 2012 The admin level structure: http://mygamingtalk....ot#shrubbot.cfg Adding a map tto the objective cycle. Objective cycle looks usually something like this: set d1 "set g_gametype 2 ; map oasis ; set nextmap vstr d2" set d2 "set g_gametype 2 ; map battery ; set nextmap vstr d3" set d3 "set g_gametype 2 ; map goldrush ; set nextmap vstr d4" set d4 "set g_gametype 2 ; map radar ; set nextmap vstr d5" set d5 "set g_gametype 2 ; map railgun ; set nextmap vstr d6" set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d1" vstr d1 To add for example adlernest, add line set d7 "set g_gametype 2 ; map adlernest; set nextmap vstr d1" Also, on the line set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d1" Change it to this set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d7" The change is the last vstr d1 to vstr d7. Which means that instead of nextmap being set to the first line, it is set to the value of d7. The d6 and d7 are both custom cvars. vstr is a command that executes the value in the cvar parameter. So, set nextmap, sets the value of the inbuilt nextmap cvar to "vstr d7". "vstr d7" will expand toset g_gametype 2 ; map adlernest; set nextmap vstr d1which sets the gametype to 2, executes the map command with the map adlernest and finally sets the value of the nextmap to do vstr of the next cvar to be executed after map ends. The final result would be set d1 "set g_gametype 2 ; map oasis ; set nextmap vstr d2" set d2 "set g_gametype 2 ; map battery ; set nextmap vstr d3" set d3 "set g_gametype 2 ; map goldrush ; set nextmap vstr d4" set d4 "set g_gametype 2 ; map radar ; set nextmap vstr d5" set d5 "set g_gametype 2 ; map railgun ; set nextmap vstr d6" set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d7" set d7 "set g_gametype 2 ; map adlernest ; set nextmap vstr d1" vstr d1 About not being able to connect, have you tried to ping your server? I suspect you are hosting the server yourself so be sure to check firewalls and all such things as well. One thing that makes me curious is, how can you put the commands in the console if you can't connect to the server. Did you mean the server console? Blue542 1 Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 10, 2012 Author Share Posted August 10, 2012 The admin level structure: http://mygamingtalk....ot#shrubbot.cfg Adding a map tto the objective cycle. Objective cycle looks usually something like this: set d1 "set g_gametype 2 ; map oasis ; set nextmap vstr d2" set d2 "set g_gametype 2 ; map battery ; set nextmap vstr d3" set d3 "set g_gametype 2 ; map goldrush ; set nextmap vstr d4" set d4 "set g_gametype 2 ; map radar ; set nextmap vstr d5" set d5 "set g_gametype 2 ; map railgun ; set nextmap vstr d6" set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d1" vstr d1 To add for example adlernest, add line set d7 "set g_gametype 2 ; map adlernest; set nextmap vstr d1" Also, on the line set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d1" Change it to this set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d7" The change is the last vstr d1 to vstr d7. Which means that instead of nextmap being set to the first line, it is set to the value of d7. The d6 and d7 are both custom cvars. vstr is a command that executes the value in the cvar parameter. So, set nextmap, sets the value of the inbuilt nextmap cvar to "vstr d7". "vstr d7" will expand toset g_gametype 2 ; map adlernest; set nextmap vstr d1which sets the gametype to 2, executes the map command with the map adlernest and finally sets the value of the nextmap to do vstr of the next cvar to be executed after map ends. The final result would be set d1 "set g_gametype 2 ; map oasis ; set nextmap vstr d2" set d2 "set g_gametype 2 ; map battery ; set nextmap vstr d3" set d3 "set g_gametype 2 ; map goldrush ; set nextmap vstr d4" set d4 "set g_gametype 2 ; map radar ; set nextmap vstr d5" set d5 "set g_gametype 2 ; map railgun ; set nextmap vstr d6" set d6 "set g_gametype 2 ; map fueldump ; set nextmap vstr d7" set d7 "set g_gametype 2 ; map adlernest ; set nextmap vstr d1" vstr d1 About not being able to connect, have you tried to ping your server? I suspect you are hosting the server yourself so be sure to check firewalls and all such things as well. One thing that makes me curious is, how can you put the commands in the console if you can't connect to the server. Did you mean the server console? thanks, and yeah im hosting myself, and before i was able to connect to my server, and i had to open up console with the " ` " and had to put /rcon and such. about not connecting, everytime i start the server, i checked it and it sets the port to localhost instead of the ip. and how do you ping a server? Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 10, 2012 Management Share Posted August 10, 2012 Try adding+set net_ip <the server ip> +set net_port <the server port you allow>to the command line parameters. Also make sure that the firewall allows UDP both ways in the port you select. If you register your server after start at the master server list (sv_master cvars), pease make sure you have the getstatus DDoS attack defended. You can do that with several external tools and some community made server binaries can have inbuilt protections. More info about that you can find here http://forums.warchestgames.com/showthread.php/22936-POTENTIONAL-FIX-etded-x86-getstatus-exploit?highlight=getstatus+exploit About the pinging, I ment pinging in general. Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 11, 2012 Author Share Posted August 11, 2012 (edited) Try adding+set net_ip <the server ip> +set net_port <the server port you allow>to the command line parameters. Also make sure that the firewall allows UDP both ways in the port you select. If you register your server after start at the master server list (sv_master cvars), pease make sure you have the getstatus DDoS attack defended. You can do that with several external tools and some community made server binaries can have inbuilt protections. More info about that you can find here http://forums.warche...tstatus exploit About the pinging, I ment pinging in general. thanks, how do i add the command though? how do i add the fix? to what folder do i drag it to? Edited August 11, 2012 by Blue542 Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 11, 2012 Management Share Posted August 11, 2012 You will need to read that forum thread to understand the different fixes. Maybe skipping some posts. If it is a binary edit, you just overwrite the etded.x86/etded.exe. You add the net_ commands as command line parameters. That is if you are running a dedicated server. You have somethig like this etded +set dedicated 2 +set fs_game silent +exec silent.cfg Add the net_ parameters there, before the silent.cfg though. Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 12, 2012 Author Share Posted August 12, 2012 You will need to read that forum thread to understand the different fixes. Maybe skipping some posts. If it is a binary edit, you just overwrite the etded.x86/etded.exe. You add the net_ commands as command line parameters. That is if you are running a dedicated server. You have somethig like this etded +set dedicated 2 +set fs_game silent +exec silent.cfg Add the net_ parameters there, before the silent.cfg though. doesnt work still :/ Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 12, 2012 Management Share Posted August 12, 2012 What kind of server setup do you have? Quote Link to comment Share on other sites More sharing options...
Sol Posted August 13, 2012 Share Posted August 13, 2012 If you are using Linux It will be just ./etded +set dedicated 2 +set net_ip <your_ip> +set net_port <your_port> +set fs_game silent +set fs_basepath <path to your server> +set fs_homepath <path to your server> +exec silent.cfg while one the windows, just etded instead of ./etded command Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 13, 2012 Author Share Posted August 13, 2012 im running windows 7 Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 13, 2012 Management Share Posted August 13, 2012 This is a home computer you are trying to make accessible by internet? Check the firewall rules. The issue is most probably network related. If you are behind NAT you may need to set up port forwarding. Also, in that case the IP address on your local computer migt not be the one that is visible from the internet. Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 13, 2012 Author Share Posted August 13, 2012 This is a home computer you are trying to make accessible by internet? Check the firewall rules. The issue is most probably network related. If you are behind NAT you may need to set up port forwarding. Also, in that case the IP address on your local computer migt not be the one that is visible from the internet. ill check firewall, and i already portforward, where can i find the internet visible ip? Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 13, 2012 Management Share Posted August 13, 2012 http://www.geoiptool.com/ It will show your IP first. Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 14, 2012 Author Share Posted August 14, 2012 Thats the IP i use Quote Link to comment Share on other sites More sharing options...
Dragonji Posted August 14, 2012 Share Posted August 14, 2012 (edited) I think you should search for some "how to host an own ET server" tutorials on the Internet first because you need basic knowledge on that matter. Edited August 14, 2012 by Dragon Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 14, 2012 Management Share Posted August 14, 2012 Indeed, it seems that noone in this community knows exactly how to set up home hosted public server with Windows 7. Maybe there are some tutorials somewhere that could give you pointers. Quote Link to comment Share on other sites More sharing options...
phantasm Posted August 15, 2012 Share Posted August 15, 2012 http://fearless-assassins.com/tutorials/article/211-how-to-install-silent-mod-040/ Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted August 15, 2012 Management Share Posted August 15, 2012 I found this http://forums.steampowered.com/forums/showthread.php?t=2352576 It's for different game so you can't directly copy it and especially the cvars are different. You might see something you hadn't yet checked with the network settings. Quote Link to comment Share on other sites More sharing options...
Blue542 Posted August 15, 2012 Author Share Posted August 15, 2012 Thanks for the help everyone hopefully it helps a lot Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.