How I can prevent players from using custom skins?
Moderator: Moderators
-
baileymoto
- Private
- Posts: 5
- Joined: Fri Jan 05, 2007 6:14 am
How I can prevent players from using custom skins?
We play medal of honor at work. Some players have discovered that they can simply download custom player skins off the internet and load them on their end. This allows them to be invisible to any user that does not have this skin loaded on their computer. How can I prevent this?
-
Rookie One.pl
- Site Admin
- Posts: 2752
- Joined: Fri Jan 31, 2003 7:49 pm
- Location: Nowa Wies Tworoska, Poland
- Contact:
-
baileymoto
- Private
- Posts: 5
- Joined: Fri Jan 05, 2007 6:14 am
Yep, its possible and its happening.Rookie One.pl wrote:This is entirely possible. It happens when the player in question is the host and it's a non-dedicated server.
We arent running a dedicated server, we just start a game on the same computer usually. However, non-hosts are able to do it. It seems that a non-host can load any player/character skin he wishes.
Keep in mind that when a player is invisible, normal game play exists. You can still see blood (and still kill him of course) drip off that player if you happen to shoot him. The computers w/o that skin simply dont know what to load, defaulting to no skin what so ever.
-
baileymoto
- Private
- Posts: 5
- Joined: Fri Jan 05, 2007 6:14 am
How can I force like models on players?Viper wrote:Use CI (laggy) - Or force like models on all players.
In regards to it being an older version, I am not sure. Sorry, but I dont play any games other than this one at work (and we're quite addicted!).
It's MOHAA Allied Assault. File version 1.0.0.1. We simply start a game from within the multiplater screen, rather than making a dedicated server. The host is always playing with us. However, there is also the MOHAA_server.exe file which is version 1.2.1.280
Last edited by baileymoto on Fri Jan 05, 2007 4:22 pm, edited 2 times in total.
-
Green Beret
- Major General
- Posts: 746
- Joined: Mon Apr 19, 2004 12:21 pm
- Contact:
try this - Thread this in your map script
Code: Select all
force_skin:
while(1)
{
for(local.dude=1;local.dude <= $player.size;local.dude++)
{
if (($player[local.dude].dmteam != NULL) && (isalive $player[local.dude]))
{
$player[local.dude] stufftext ("set cg_forcemodel 0")
if ($player[local.dude].dmteam == allies)
{
$player[local.dude] stufftext ("set dm_playermodel allied_sas")
}
if ($player[local.dude].dmteam == axis)
{
$player[local.dude] stufftext ("set dm_playergermanmodel german_worker")
}
}
}
wait 1
}
end



