Author Topic: Question about Gamemodes  (Read 633 times)

Is it possible to make a Gamemode that has teams on it? Or at least make a Gamemode that uses Slayer?

Also, if so what are the Slayer version of these.

Thanks!

Code: [Select]
$MiniGame::Enabled 1
$MiniGame::GameColor 0
$MiniGame::InviteOnly 0
$MiniGame::IncludeAllPlayersBricks 1
$MiniGame::PlayersUseOwnBricks 0

$MiniGame::Points_BreakBrick 0
$MiniGame::Points_PlantBrick 0
$MiniGame::Points_KillPlayer 1
$MiniGame::Points_KillBot 0
$MiniGame::Points_KillSelf -1
$MiniGame::Points_Die 0
   
$MiniGame::RespawnTime -1
$MiniGame::VehicleRespawnTime -1
$MiniGame::BrickRespawnTime 60
$MiniGame::BotRespawnTime 5

$MiniGame::UseSpawnBricks 1
$MiniGame::FallingDamage 1
$MiniGame::WeaponDamage 1
$MiniGame::SelfDamage 1
$MiniGame::VehicleDamage 1
$MiniGame::BrickDamage 1
$MiniGame::BotDamage 1
$MiniGame::EnableWand 0
$MiniGame::EnableBuilding 0
$MiniGame::EnablePainting 0

$MiniGame::PlayerDataBlockName No-Jet Player

$MiniGame::StartEquipName0 0
$MiniGame::StartEquipName1 0
$MiniGame::StartEquipName2 0
$MiniGame::StartEquipName3 0
$MiniGame::StartEquipName4 0

$MiniGame::TimeLimit 240


I do not believe that you can use team minigames here by default.

To integrate slayer with your gamemode, follow these steps:

  • In-game, start a server and make a Slayer minigame that works the way that you want it to with the settings you'd like the gamemode to use.
  • End the minigame and close Blockland.
  • Open your Blockland folder and navigate to config/server/Slayer and find config_last.cs
  • Make a copy of config_last.cs and rename it to config_slayer.cs. Place the new copy in your GameMode_blah folder
  • add the line ADDON Gamemode_Slayer to the gamemode.txt file
  • In the gamemode.txt file, set $MiniGame::Enabled to 0 (do not leave it as Enabled 1)

Slayer will find your gamemode and load your configuration.

Ooooo, this sound interesting. Let me go test!

I do not believe that you can use team minigames here by default.

To integrate slayer with your gamemode, follow these steps:

  • In-game, start a server and make a Slayer minigame that works the way that you want it to with the settings you'd like the gamemode to use.
  • End the minigame and close Blockland.
  • Open your Blockland folder and navigate to config/server/Slayer and find config_last.cs
  • Make a copy of config_last.cs and rename it to config_slayer.cs. Place the new copy in your GameMode_blah folder
  • add the line ADDON Gamemode_Slayer to the gamemode.txt file
  • In the gamemode.txt file, set $MiniGame::Enabled to 0 (do not leave it as Enabled 1)

Slayer will find your gamemode and load your configuration.

It is possible, I have done it before but it does take a lot of unneeded effort, I suggest doing what Pacnet said as it is easier and quicker to use slayer than to write it up yourself.