From 83e1d1f833f036e0c7bc205bc2d39f0e9f083f54 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Sun, 22 May 2016 15:28:10 -0400 Subject: Since the new item system, the old console commands for planting will not longer work --- content/help.html | 73 ++++++++++++++++------------------- gamemode/chatcommands.lua | 98 ----------------------------------------------- 2 files changed, 34 insertions(+), 137 deletions(-) diff --git a/content/help.html b/content/help.html index ea81b3a..d98e635 100644 --- a/content/help.html +++ b/content/help.html @@ -1,55 +1,55 @@ - + @@ -82,7 +82,7 @@

Power

This bar will only show if you have a Flashlight in your inventory. It will increase and decrease depending if your flashlight is enabled or not. The more Batteries you have, the slower it will decrease.

- +
Starting Survival

Gathering resources

@@ -95,15 +95,10 @@

Gathering Food

The first thing you want to do after you have spawned is to get some food to survive, but you will need to get seeds first.

In order to do so, aim at ground ( And dirt/gravel surface ), and press your use key. This will start Harvesting process. Once finished you will be given some items, some of which can be seeds. If you failed to get anything just keep trying.

-

Once you got some seeds you will need to plant them. There are 4 ways to do so:

- +

Once you got some seeds you will need to plant them. Press Q and click on the desired seeds, then select the plant option to plant them.

Just remember to aim at ground to plant them.

Now that you have planted some seeds you will have to wait until they grow up. It takes some time, so you better go and build yourself a shelter.

- +

Building Shelter

In Garry's Mod Stranded shelter means something above your head. It can be anything as long as it is above your head. If you have tried spawning anything you probably noticed that it will spawn a blue wire frame of wanted object, instead @@ -112,19 +107,19 @@ to get anything but once you of you keep trying you will get enough wood to build yourself a shelter. It is recommended to get 16 wood and build yourself a 4x4 PHX wood plate and place it above your head. Once done, you should move on to building yourself some proper tools.

- +

Why do I need a shelter?

Shelter is needed so you don't lose Health while you are sleeping.

It is also a good idea to get yourself a sleeping furniture from "Mixed - Sleeping Furniture" as it speeds up your sleep by the factor of 2.

- +

Crafting Tools

In order to create yourself some tools, you will need to build yourself a workbench. There are 9 tiers of tools: Stone, Copper, Iron, Tech, Silver, Gold, Steel, Platinum, and Mithril.

-

At first you want to build a Stone Workbench. In order to do so you need to hold Q, open Commands tab and press Structures button. - You can also press F3 and click on Structures button. Once there, click on Stone Workbench and click Build. It will create familiar - blueish build site. Note: You can't have more then one build site at once. Structures will require quite a lot of resources, so don't - rush to build them. Once you have build it, press use key on it. It will open you a weapon crafting window. For there you want to craft +

At first you want to build a Stone Workbench. In order to do so you need to hold Q, open Commands tab and press Structures button. + You can also press F3 and click on Structures button. Once there, click on Stone Workbench and click Build. It will create familiar + blueish build site. Note: You can't have more then one build site at once. Structures will require quite a lot of resources, so don't + rush to build them. Once you have build it, press use key on it. It will open you a weapon crafting window. For there you want to craft Stone Pickaxe and Stone Hatchet. Next you want to build Stone Furnace to smelt Copper Ore gained by using Stone Pickaxe and so on.

- +

Making campfire at night

It may prove difficult to do anything at night due to the fact that you have to craft a Flashlight to use it. So, what you can do is make yourself a campfire! To make one, you need a few pieces of wood. One you have them, @@ -133,7 +128,7 @@ Then you need to aim at that prop and start making the campfire. You can type !campfire to in chat or use the gms_makefire console command to create it.

You can also cook on your campfire. You can open Cooking menu by pressing your use key ( E by default ) on it. For a permanent cooking ability you should build yourself a Stove.

- +

Managing Resources

You can drop your resources if you have too much. You can do this either by using the Q menu or !drop [Resource Type] [Amount] chat command. But there is a problem with that. Too many resource boxes lying around can cause the server to lag really badly. So, if the @@ -143,7 +138,7 @@ Dropped resources are automatically stored into closest Resource Pack or Resource Drop.

Another way to store resources into Resource Pack or to put them into a Buildsite is to simply pickup a Resource Drop and push it into Resource Pack or Buildsite.

- +
Skills

In Garry's Mod Stranded, almost every your action is tied to a skill. @@ -252,4 +247,4 @@

- \ No newline at end of file + diff --git a/gamemode/chatcommands.lua b/gamemode/chatcommands.lua index 82340ba..1cb38ec 100644 --- a/gamemode/chatcommands.lua +++ b/gamemode/chatcommands.lua @@ -200,90 +200,6 @@ GMS.RegisterChatCmd( CHATCMD ) local CHATCMD = {} -CHATCMD.Command = "melon" -CHATCMD.Desc = "Plant a watermelon." -CHATCMD.CCName = "gms_plantmelon" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantMelon( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - -CHATCMD.Command = "banana" -CHATCMD.Desc = "Plant a banana." -CHATCMD.CCName = "gms_plantbanana" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantBanana( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - -CHATCMD.Command = "orange" -CHATCMD.Desc = "Plant an orange." -CHATCMD.CCName = "gms_plantorange" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantOrange( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - -CHATCMD.Command = "grain" -CHATCMD.Desc = "Plant grain." -CHATCMD.CCName = "gms_plantgrain" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantGrain( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - -CHATCMD.Command = "berrybush" -CHATCMD.Desc = "Plant berry bush." -CHATCMD.CCName = "gms_plantbush" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantBush( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - -CHATCMD.Command = "tree" -CHATCMD.Desc = "Plant a tree." -CHATCMD.CCName = "gms_planttree" - -function CHATCMD:Run( ply ) - GAMEMODE.PlantTree( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - CHATCMD.Command = "dropweapon" CHATCMD.Desc = "Drop your current weapon." CHATCMD.CCName = "gms_dropweapon" @@ -312,20 +228,6 @@ GMS.RegisterChatCmd( CHATCMD ) local CHATCMD = {} -CHATCMD.Command = "medicine" -CHATCMD.Desc = "Take a Medicine." -CHATCMD.CCName = "gms_takemedicine" - -function CHATCMD:Run( ply ) - GAMEMODE.TakeAMedicine( ply ) -end - -GMS.RegisterChatCmd( CHATCMD ) - ----------------------------------------------------------------------------------------------------- - -local CHATCMD = {} - CHATCMD.Command = "afk" CHATCMD.Desc = "Go away from keyboard. ( Doesn't reduce your needs )" CHATCMD.CCName = "gms_afk" -- cgit v1.2.3-70-g09d2