Call of Duty: Black Ops III – Mod Tools

Call of Duty: Black Ops III – Mod Tools

29 个评价
Multiplayer Game Modes Tutorial
由 WarpSpider 制作
This is a list of video links for my tutorial series showing how to build all the different game modes for custom multiplayer maps. Also, how to do "Winner's Circle" and easy(no script) vehicle spawners.
3
   
奖励
收藏
已收藏
取消收藏
Part 1: TDM, KC, FFA, and Gun Game
Part 2: Domination
Part 3: Demolition
Part 4: CTF and Uplink
Part 5: Safeguard
Part 6: Search and Destroy
Part 7: Hardpoint and Fracture
Extra: How to do Winner's Circle
Extra: Easy Vehicle Spawners
5 条留言
Pax 2024 年 7 月 1 日 上午 7:04 
There's nothing to express how timely your guide is
Xero 2023 年 6 月 11 日 下午 6:48 
These guides are amazing. I know I thanked you on my own workshop map comments but thought I'd hit the thumbs up, favorite and say it here. Thanks again.
MrLednor 2023 年 4 月 5 日 上午 5:08 
thanks bro il take a look
WarpSpider  [作者] 2023 年 4 月 4 日 下午 4:45 
I don't know any easy way to make vehicles fly without using custom scripting:

while(player isInVehicle()) {
vh launchVehicle((0,0,20));
if(player UseButtonPressed()) {
player unlink(); break; }
if(player jumpButtonPressed()) {
vh launchVehicle((0,0,20)); wait(.05); continue; }
if(player stanceButtonPressed()) {
vh launchVehicle((0,0,-10)); wait(.05); continue; }
wait(.05); }
MrLednor 2023 年 4 月 4 日 上午 7:30 
hi can u show how to set up flying vehicles ? i cant seem to get it to work