CrazyDudeCOD How do you use "-lan", like where do you put it? I'm trying to host a dedicated server for LAN so that bots won't cause that crazy lag.

audioengineer
Posts
-
How do you use "-lan"? -
Authentication Ticket Errortxde1x Did you figure this out? I've been trying to host a dedicated server on WAW (T4) because if I host LAN with bots it lags like crazy despite having a good PC. I synced the clock and it always displays that error message
And the error shows when I try to join my own game, I haven't even tried with my other PC.
-
[MP] Modern Warfare 3 MapvoteResxt It turns out the mapvote wasn't updating the changes because I had an older version that I had renamed because I thought the game would only load exactly "mapvote.gsc". I deleted it and the changes appeared.
Regarding the maps not showing, I read the readme once again and the problem was that I had added the face off maps after the other ones and I probably exceeded the 1024 limit. When I created a dvar "mapvote_maps_face_off" and put it inside the additional maps dvar, it worked, now those maps appear on the mapvote.I can confirm that, via the console, I was able to get the 8 modes and 4 maps to show, I did exactly what was on the script, "set mapvote_modes Team Deathmatch,TDM_default:Domination,DOM_default:Free for All,FFA_default:Gun Game,GG_default:One in the Chamber,OIC_default:Headquarters,HQ_default:Kill Confirmed,KC_default:Search & Destroy,SD_default"
I was editing the script because dvars like set_mapvote_debug 1 do not save when restarting the game. Is it just that one that doesn't save? I tested and the modes seem to appear fine even after restarting, just wanted to make sure the console saves the script?
Thanks!
-
[MP] Modern Warfare 3 MapvoteHi Resxt, sorry to bother you again regarding the mapvote. I tried putting the Face-Off maps but they never appear, is that not possible? I tried adding to the existing list and also using the additional maps dvar.
Another thing is that there are many maps that never appear, I believe it's only DLC maps except Terminal, which does appear, and I have them installed correctly and can start private matches in all maps.
And also, when I put more modes, it always only shows 4 "Team Deathmatch, Kill Confirmed, Domination and Search and Destroy". I changed the values to max 4 maps and 8 modes, and then I put 0 max modes but 4 max maps to see if it would readjust but no luck. Here's the modified script. Thanks in advance!InitDvars()
{
SetDvarIfNotInitialized("mapvote_debug", false);
SetDvarIfNotInitialized("mapvote_maps", "Seatown,mp_seatown:Dome,mp_dome:Arkaden,mp_plaza2:Bakaara,mp_mogadishu:Resistance,mp_paris:Downturn,mp_exchange:Bootleg,mp_bootleg:Carbon,mp_carbon:Hardhat,mp_hardhat:Lockdown,mp_alpha:Village,mp_village:Fallen,mp_lambeth:Outpost,mp_radar:Interchange,mp_interchange:Underground,mp_underground:Mission,mp_bravo:Piazza,mp_italy:Liberation,mp_park:Overwatch,mp_overwatch:Black Box,mp_morningwood:Sanctuary,mp_meteora:Foundation,mp_cement:Oasis,mp_qadeem:Terminal,mp_terminal_cls:Decommission,mp_shipbreaker:Off Shore,mp_roughneck:Gulch,mp_moab:Boardwalk,mp_boardwalk:Parish,mp_nola:Favela,mp_favela:Highrise,mp_highrise:Skidrow,mp_nightshift:Nuketown,mp_nuked:Rust,mp_rust");
SetDvarIfNotInitialized("mapvote_modes", "Team Deathmatch,TDM_default:Domination,DOM_default:Free for All,FFA_default:Gun Game,GG_default:One in the Chamber,OIC_default:Headquarters,HQ_default:Kill Confirmed,KC_default:Search & Destroy,SD_default");
SetDvarIfNotInitialized("mapvote_additional_maps_dvars", "Lookout,mp_restrepo_ss:Getaway,mp_hillside_ss:Erosion,mp_courtyard_ss:Aground,mp_aground_ss:Vortex,mp_six_ss:U-Turn,mp_burn_ss:Intersection,mp_crosswalk_ss");
SetDvarIfNotInitialized("mapvote_limits_maps", 4);
SetDvarIfNotInitialized("mapvote_limits_modes", 0);
SetDvarIfNotInitialized("mapvote_limits_max", 12);
SetDvarIfNotInitialized("mapvote_sounds_menu_enabled", 1);
SetDvarIfNotInitialized("mapvote_sounds_timer_enabled", 1);
SetDvarIfNotInitialized("mapvote_colors_selected", "blue");
SetDvarIfNotInitialized("mapvote_colors_unselected", "white");
SetDvarIfNotInitialized("mapvote_colors_timer", "blue");
SetDvarIfNotInitialized("mapvote_colors_timer_low", "red");
SetDvarIfNotInitialized("mapvote_colors_help_text", "white");
SetDvarIfNotInitialized("mapvote_colors_help_accent", "blue");
SetDvarIfNotInitialized("mapvote_colors_help_accent_mode", "standard");
SetDvarIfNotInitialized("mapvote_vote_time", 25);
SetDvarIfNotInitialized("mapvote_blur_level", 2.5);
SetDvarIfNotInitialized("mapvote_blur_fade_in_time", 2);
SetDvarIfNotInitialized("mapvote_horizontal_spacing", 75);
SetDvarIfNotInitialized("mapvote_display_wait_time", 1);
SetDvarIfNotInitialized("mapvote_default_rotation_enable", false);
SetDvarIfNotInitialized("mapvote_default_rotation_maps", "mp_dome:mp_nuked:mp_rust");
SetDvarIfNotInitialized("mapvote_default_rotation_modes", "TDM_default");
SetDvarIfNotInitialized("mapvote_default_rotation_min_players", 0);
SetDvarIfNotInitialized("mapvote_default_rotation_max_players", 0);
} -
[MP] Modern Warfare 3 MapvoteHi Resxt, completely forgot about the thread.
In the meantime, I got it working by enabling via console.
I appreciate that you updated the script to enable it by default.I have two questions if you don't mind:
-
Whenever I choose domination, the score is set to 500 instead of 200. Is there any way to make the default score limit 200 for dom?
-
Also, I'm having trouble setting the modes. Is it something I have to change via console too, or is there a way I can permanently change to (all or some, if there's a limit) my favorite modes (TDM, Kill Confirmed, Domination, Infected, S&D, Hardpoint)
I tried editing the .gsc and it did not change the modes. I'm setting it up for private match with bots, not on a server. Here's the part I changed in the script to test:
SetDvarIfNotInitialized("mapvote_modes", "Team Deathmatch,TDM_default:Domination,DOM_default:Kill Confirmed,KC_default:Search & Destroy,SD_default");
I know I'm doing something wrong here, sorry xD
Thanks for your time.
-
-
[MP] Modern Warfare 3 MapvoteAh, I see.
I tried again with debug disabled but still doesn't show up after the game ends.
I had changed the debug because I wanted to see if it worked at the start of the game.This time I didn't press enter and some options appeared but I don't know what they mean. I attach the screenshots.
Yeah, I have no idea why it just won't work on my end.
I am using Steam to launch plutonium and am using the PS5 controller, if any of that matters.Besides that, can't think of anything. It just seems like my IW5 or plutonium isn't locating/loading the script. Is there any way to check if it's loading/locating at least?
-
[MP] Modern Warfare 3 MapvoteResxt Sorry for the late reply. I typed in mapvote_e and mapvote in the console, but nothing happens when I press enter. It clears the console.
My scripts folder only has your mapvote.gsc. The path is the following: C:\Users\diogo\AppData\Local\Plutonium\storage\iw5\scripts
I did not change any dvar except for mapvote_debug and mapvote_enable.
I'm trying to use this with Bot Warfare, if that's any help.
Edit: Also, I tried it on team deathmatch and some domination.
Thanks
-
[MP] Modern Warfare 3 MapvoteHello Resxt, I've tried everything but can't get it to appear, the custom game always ends and I have to change the map manually.
I checked the path is correct, edited the values, tried setting it up using the console, even in debug mode I can't get the mapvote to show on the screen.
Could you help me out? Let me know if there's a log file I could attach to make it easier.Thanks in advance!