Author Topic: Gamemode_Plastic(Eepos, Jad) UPDATED OP WITH INFO  (Read 5866 times)

this game-mode requires no screenshots. don't even ask

What is this?
This is a simple(and first) game-mode i wrote back in 2010, basically you have a plastic bricks(In specials)  that you need to shape. once finished with shaping you get 10 Plastic to build with. every brick you place removes one plastic. there no limits to the amount of plastic bricks placed placed. you could use this for fort wars, mining, or plain out fun.
I decided to release this out of boredom.


To those of you who don't understand
What the forget am i about to download?
It's basically a currency system to bricks. You hit the plastic bricks until you get 10 plastic. Every time you use place a normal brick, you use up one plastic. If you don't have anymore plastic, you can't place anymore bricks.


The 10 limit brick confusion
Also, you GET 10 plastic per brick you harvest, you have an INFINITE space for your plastic
Download?

Grab it here(Downloads make me happy)
http://www.mediafire.com/?zbt4oo72scc2v7r

Features


Very simple and easy to use game-mode.
A plastic shaper item.
Keeps you amused for a while.

Credits
Eepos = main code
Jad = Fixing it up(Coolbro)


IMPORTANT : if you want to enable this or disable it during gameplay use the following until I'm ready to get off my lazy ass

Turns it on
activatePackage(PlasticGamemode);

Turns it off
DeactivatePackage(PlasticGamemode);



v2 is almost out!
« Last Edit: November 23, 2011, 03:52:36 AM by Eeposs »

Sounds interesting.  Cool.




.. I smell something?

what is i-

holy stuff plastic

I'm wondering if you guys are downloading this. or just talking about burning plastic. :p

I'm wondering if you guys are downloading this. or just talking about burning plastic. :p
Check how many downloads it has.

This is weird, I ended the mini and the plastic gamemode still there >:/

This is weird, I ended the mini and the plastic gamemode still there >:/
Does not require a minigame to run it, if you want it on your server but want to turn it off type this in your console

deactivatePackage(PlasticGamemode);
To turn it back on:
activatePackage(PlasticGamemode);


Add a toggling command?
Code: [Select]
function serverCmdTogglePlasticMini(%client, %word)
{
if($PlasticMini::isOn == 1)
{
deactivatePackage(PlasticGamemode);
$PlasticMini::isOn = 0;
messageAll('', "\c2The plastic gamemode has been ENDED.");
}

else if($PlasticMini::isOn == 0)
{
activatePackage(PlasticGamemode);
$PlasticMini::isOn = 1;
messageAll('', "\c2The plastic gamemode has been STARTED.");
}
}

Add a toggling command?
Code: [Select]
function serverCmdTogglePlasticMini(%client, %word)
{
if($PlasticMini::isOn == 1)
{
deactivatePackage(PlasticGamemode);
$PlasticMini::isOn = 0;
messageAll('', "\c2The plastic gamemode has been ENDED.");
}

else if($PlasticMini::isOn == 0)
{
activatePackage(PlasticGamemode);
$PlasticMini::isOn = 1;
messageAll('', "\c2The plastic gamemode has been STARTED.");
}
}
Was just about to do that.

How do you guys like the mod?

How about on death, you drop all your accumulated plastic and on disconnect, all the plastic on the client is removed and distributed evenly to all the players that are in the minigame?