speed of MP AI
Moderator: Moderators
-
sg.Pepper
- Second Lieutenant
- Posts: 152
- Joined: Tue Jan 13, 2004 2:47 pm
- Location: Czrch Republic
- Contact:
speed of MP AI
Can i set runspeed of MP AI?
If the spawnpoint has a targetname you can disable them or possibly delete them
$thetargetname disablespawn
and you can spawn spawnpoints do it at the top of the script before level waittill prespawn
main:
level.spawn[1] = spawn info_player_allied
level.spawn[1].origin = ( ?? ?? ??)
level.spawn[1].angles = ( ?? ?? ??)
level.spawn[2] = spawn info_player_axis
level.spawn[2].origin = ( ?? ?? ??)
level.spawn[2].angles = ( ?? ?? ??)
level waittill prespawn
...
...
level waittill spawn
...
...
end
and some where in a thread maybe you can use these
level.spawn[1] disablespawn
level.spawn[2] disablespawn
level.spawn[1] enablespawn
level.spawn[2] enablespawn
You can also do it with targetnames the same way only thing is alot of the stock maps do not have spawnpoints with targetnames . I guess for those maps you have to block the spawnpoints . You can get the coords of them if you open the bsp in wordpad and use the find button and find info_player_allied and info_player_axis they will be in a part of the bsp that is in plain text .
$thetargetname disablespawn
and you can spawn spawnpoints do it at the top of the script before level waittill prespawn
main:
level.spawn[1] = spawn info_player_allied
level.spawn[1].origin = ( ?? ?? ??)
level.spawn[1].angles = ( ?? ?? ??)
level.spawn[2] = spawn info_player_axis
level.spawn[2].origin = ( ?? ?? ??)
level.spawn[2].angles = ( ?? ?? ??)
level waittill prespawn
...
...
level waittill spawn
...
...
end
and some where in a thread maybe you can use these
level.spawn[1] disablespawn
level.spawn[2] disablespawn
level.spawn[1] enablespawn
level.spawn[2] enablespawn
You can also do it with targetnames the same way only thing is alot of the stock maps do not have spawnpoints with targetnames . I guess for those maps you have to block the spawnpoints . You can get the coords of them if you open the bsp in wordpad and use the find button and find info_player_allied and info_player_axis they will be in a part of the bsp that is in plain text .

