Blockland Forums > General Discussion

I just downloaded Super Murder Mystery and I cant find the required addons

Pages: << < (6/10) > >>

Crystalwarrior:


--- Quote from: Crispy_ on December 13, 2013, 09:31:42 PM ---...its easy. just remove two lines from the gamemode.txt from the .zip

--- End quote ---
No.
Just no.
It's not as simple as you think.
If you noticed, the entire gamemode relies on both of these weapon packs. It randomly picks through them in the item spawning and player spawning codes.

How to include your own weapons in SMM:

--- Code: ---//misc.cs, lines 136 - 140
%tools[0] = "AutomaticPistolItem RevolverItem CarbineSMGItem";
%tools_maf[0] = "StealthPistolItem";
%tools[1] = "MeleeCaneItem MeleeKnifeItem MeleeUmbrellaItem MeleeWrenchItem MeleePanItem taserItem";
%tools[2] = "CleanSprayItem GoldenGunItem PapersItem MedicineItem PaintItem SuitcaseKeyItem LighterItem bodybagItem AmmoSupplyItem RecoveryDeviceItem flashlightItem hookshotItem";
%tools_maf[2] = "DisguiseItem CloakItem falseCorpseItem timeBombItem";

--- End code ---
These use item datablocks. So if you want players to spawn with gunItem primary, you just plop it there.
Remember to remove all the missing items, though.

for randomItemSpawn named bricks:

--- Code: ---//SMMCore.cs, lines 159 - 161
%choices = "suitcaseKeyItem papersItem paintItem LighterItem CleanSprayItem";
%choices = %choices SPC "MeleeCaneItem MeleeKnifeItem MeleeUmbrellaItem MeleeWrenchItem MeleePanItem";
%choices = %choices SPC "bodybagItem taserItem MedicineItem AmmoSupplyItem flashlightItem";
--- End code ---

For suitcases:

--- Code: ---//items/suitcase.cs, lines 188 - 195
if (%isLocked) {
%choices = "assaultRifleItem doubleShotgunItem sniperRifleItem fieldRifleItem combatRifleItem stealthPistolItem goldenGunItem";
%choices = %choices TAB "disguiseItem medicineItem ammoSupplyItem recoveryDeviceItem cloakItem bodybagItem";
%choices = %choices TAB "falseCorpseItem flashlightItem hookshotItem paintItem timeBombItem";
}
else {
%choices = "carbineSMGItem gamePistolItem automaticPistolItem singleShotgunItem fieldRifleItem CleanSprayItem";
%choices = %choices TAB "suitcaseKeyItem papersItem lighterItem bodybagItem flashlightItem taserItem paintItem hookshotItem";
}
--- End code ---
I think you can figure out what %isLocked weapon list means.

tber123:


--- Quote from: |Orange| on December 15, 2013, 09:22:05 PM ---Did you do anything else besides replace those files?

--- End quote ---
No.

MonkeyFunkyMonkey:

So is there a download somewhere?

Elitehoser:


--- Quote from: tber123 on December 16, 2013, 08:27:17 PM ---No.

--- End quote ---
The gamemode folder is Named "GameMode_Super_Murder_Mystery-master"
take the master off.
--- Quote from: MonkeyFunkyMonkey on December 24, 2013, 01:39:44 AM ---So is there a download somewhere?

--- End quote ---
Look harder.

MrLoL²:

Bump, is it possible for anyone to make a proper version of it with Tier Tacticals and working melee weapons?

Pages: << < (6/10) > >>

Go to full version