• Radioactive Sandbox
    53 replies, posted
(Reposting here since the last thread got lost in forum migration. There needs to be a gamemode release forum tbh.) [IMG]http://i1026.photobucket.com/albums/y322/CptNuke/Untitled-1-2.png[/IMG] Radioactive Sandbox a cross between roleplay, deathmatch and sandbox with a post-apocalyptic theme. It has a very STEALKER-esque feel. You aren't forced to kill other people, but it is an option. If you aren't too keen about killing people then you can explore the map searching for valuable loot, or go on missions provided by your faction's trader. The whole point is that the gameplay is open ended and entirely up to the player. There are also a bunch of convars and customizable files that let you control how the game is run on your server. I've implemented a bunch of features geared towards roleplay too, so it's entirely possible to roleplay with this gamemode. You start off choosing a faction. There are 3 factions, each with their own strengths. [B]Bandoliers:[/B] A group of misfits that travel the wastelands looking for valuables. This faction has better selling prices at their trader, as well as increased payoffs for missions. [B]Exodus:[/B] A faction devoted to researching the environment and exploring dangerous areas looking for samples to take. This faction is the most scientifically advanced, and gives you access to various utilities including radiation filters, medication, flares and other things. These items are quite difficult to come across if you're in any other faction. [B]W.M.A (Western Military Alliance)[/B]: This faction is a group of militants seeking to dominate the wastelands. They have access to better weapons which no other faction can purchase.[/list] Once you have chosen a faction, you are spawned in the faction base and left to do whatever you want. You can talk to your faction's NPC and go on a mission for him so that you may earn money to upgrade your weapons and buy more supplies, or you can go off on your own and explore the map, finding loot and attacking other factions. [b]Other cool features:[/b] -Customizable item system. Create your own items unique to your server, if you want. -Day/night cycles that are map-independent. All you need is an env_sun in your map. -Item/spawnpoint placement gun for admins, so you can make the gamemode playable on any map. -Weapon base that supports scoped and non-scoped weapons. -Dynamic radar that detects various things. -Quests! Talk to your faction's trader NPC if you are looking for a quest. If you are a Lua scripter you can make your own quests too! -Anomalies! Inspired by STALKER, of course. There are a bunch of different anomalies, each with their own properties. Some are relatively harmless, like the Hoverstone anomaly. Some are very dangerous, such as the Vortex anomaly and the Death Pearl anomaly. -Mysterious and powerful artifacts. -Random events, such as fallout storms which force players to take cover, and rare Super-Anomalies. -Bleeding, radiation, and stamina system that directly affects the player. You can also get drunk. -Moddable! You can easily alter the team names, player models, and loads of other stuff in moddable.lua! -Custom player animations! Holster your weapon, salute people, put your hands behind you head like a hostage and more. [b]Customizing items:[/b] Step 1: Open items/misc.lua Step 2: Add something like this: [lua] function FUNC_TEST( ply, item_id, client ) if client then return "Eat" end // This is the name to show in the clientside menu ply:RemoveFromInventory( item_id ) // Remove the item from the inventory when it's used ply:AddHealth( 10 ) // Give the player some health or something end function FUNC_TESTPICKUP( ply, item_id ) ply:ChatPrint( "You just picked up my custom item! Item Name:" .. item.GetByID( item_id ).Name ) // use item.GetByID to get info for the item being picked up return true end function FUNC_TESTDROP( ply, item_id, drop ) if drop then ply:ChatPrint( "you are dropping this entity right now" ) // drop is only true when you are physically dropping the item - drop is false when selling or stashing an item return true // this is generally called for overriding the drop code - return false to make the player not spawn the prop in front of them (in case you want to do something different ) end ply:ChatPrint( "You just sold or stashed my custom item!" ) end item.Register( { Name = "My New Item", Description = "My item is super special.", Stackable = true, // can you stack them? Type = ITEM_MISC, // can be found in loot and in stores... for loot only you'd use ITEM_LOOT and for stores only you'd use ITEM_BUYABLE Weight = 0.30, // how heavy is it (lbs)? Price = 15, // how much does it cost? Rarity = 0.50, // how rare is it? 0.10 is common, 0.90 is very rare Model = "models/some_model.mdl", Functions = { FUNC_TEST }, // a table of functions it can perform when used from the inventory menu PickupFunction = FUNC_TESTPICKUP, // a function called when you pick it up DropFunction = FUNC_TESTDROP, // a function called when you drop it CamPos = Vector(15,15,5), // modify these positions/origins if the model looks funny in the inventory panel CamOrigin = Vector(0,0,5) } )[/lua] And there's your basic item. You can remove PickupFunction/DropFunction if you don't want your item to have any of those. [b]Give it to me![/b] [highlight]Here's the SVN page where you can download it:[/highlight] [highlight][url]http://radioactive-sandbox.googlecode.com/svn/trunk/[/url][/highlight] (The gamemode folder name should be radbox) [b]Changelog[/b] [url]http://code.google.com/p/radioactive-sandbox/source/list[/url] [b]Content![/b] Download this if you want to be able to jump straight into a radbox server and play! Make sure you have the map as well! [url=http://www.garrysmod.org/downloads/?a=view&id=118928][img]http://www.garrysmod.org/img/?t=dll&id=118928[/img][/url] [b]Maps![/b] If you have a map that works with radbox i will add the link here. Just post it in the thread. [url=http://www.garrysmod.org/downloads/?a=view&id=118380][img]http://www.garrysmod.org/img/?t=dll&id=118380[/img][/url] [url=http://www.garrysmod.org/downloads/?a=view&id=52608][img]http://www.garrysmod.org/img/?t=dll&id=52608[/img][/url] [url=http://www.garrysmod.org/downloads/?a=view&id=109989][img]http://www.garrysmod.org/img/?t=dll&id=109989[/img][/url] [b]Media and shit[/b] [media]http://www.youtube.com/watch?v=gnHf4hKg_KM&feature=player_embedded[/media] [IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0000.jpg[/IMG_THUMB][IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0001.jpg[/IMG_THUMB] [IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0002.jpg[/IMG_THUMB][IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0004.jpg[/IMG_THUMB] [IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0007.jpg[/IMG_THUMB][IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0013.jpg[/IMG_THUMB] [IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0014.jpg[/IMG_THUMB][IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0017.jpg[/IMG_THUMB] [IMG_THUMB]http://i1026.photobucket.com/albums/y322/CptNuke/rp_apocalypse0019.jpg[/IMG_THUMB][img_thumb]http://i1026.photobucket.com/albums/y322/CptNuke/Untitled-51.jpg[/img_thumb] [b]Something is broken![/b] Report it in this thread (post the error as well as a screenshot). [b]What ConVars are there to use?[/b] Here is a list of them with their default values. [lua]// convars (server only) CreateConVar( "sv_radbox_max_zombies", "8", { FCVAR_ARCHIVE, FCVAR_NOTIFY, FCVAR_SERVER_CAN_EXECUTE }, "Controls the amount of zombie NPCs that can spawn. (def 8)" ) CreateConVar( "sv_radbox_max_rogues", "6", { FCVAR_ARCHIVE, FCVAR_NOTIFY, FCVAR_SERVER_CAN_EXECUTE }, "Controls the amount of rogue NPCs that can spawn. (def 6)" ) CreateConVar( "sv_radbox_max_artifacts", "3", { FCVAR_ARCHIVE, FCVAR_NOTIFY, FCVAR_SERVER_CAN_EXECUTE }, "Controls the amount of artifacts that can spawn. (def 3)" )
How do you change a server's default gamemode? I'm new to the whole server thing.
Yay radbox
I'm hosting a Radioactive Sandbox server on 66.151.244.207:27035, come try it out. Be sure to give us suggestions I'm already adding things to the gamemode!
[QUOTE=ddrp-darkness;32813913]I'm hosting a Radioactive Sandbox server on 66.151.244.207:27035, come try it out. Be sure to give us suggestions I'm already adding things to the gamemode![/QUOTE] Why you kick me dude? and ban?
if there are any bugs let me know and i'll try to fix em. On certain maps (like rp_apocalypse) this game uses up almost all the edicts and causes crashing. The only way to really fix this is reducing the number of props that the map config spawns i guess. I reccommend playing on TheGarbage if you want stability.
[QUOTE=Zombie man70;32788531]How do you change a server's default gamemode? I'm new to the whole server thing.[/QUOTE] [code]sv_defaultgamemode radbox[/code]
Twoski, are you updating this gamemode, if so i'm contacting the maker of the group to get control on it.
[QUOTE=vandooz;32889851]Twoski, are you updating this gamemode, if so i'm contacting the maker of the group to get control on it.[/QUOTE] I think this is Rambo, unless I'm mistaken.
[QUOTE=Jocken300;32894888]I think this is Rambo, unless I'm mistaken.[/QUOTE] Wow, ok.
I myself have been editing the gamemode, so far I have removed the reload function on both the ItemGun and PropGun. I replaced it with a command, due to the fact that my admins often removed all props by accident while setting up on a map. I have also integrated Customizable Weapons 1.2 ( replaced network ammo counts in replace of standard ammo counts ). I also had to make custom functions for every weapon upgrade in the pack (Copied over the use functions from each and edited them). Added a console command for adding money that is usefull for testing or donators. If Rambo gave us permission perhaps we could continue the SVN (Directed at Vandooz). Edit: I also currently own a dedicated server where I am hosting a RadBox Server ( Down untill tonight), I can host a private testing server at all times.
[QUOTE=ddrp-darkness;32899282]text[/QUOTE] I would love to edit it too, but i'm currently learning the ways of (G)lua (next to that i got 2,5 year experience in PAWN so this gamemode is maybe a great learn-object). On another thing, i need to get fully contol of the group because the information on it is old.
Sounds good it's up to what Rambo says, I have sufficient Lua knowledge to continue RadBox (Adapted from C++). I hope he gives us permission.
[QUOTE=twoski;32847742][code]sv_defaultgamemode radbox[/code][/QUOTE] Didn't work. Said it was using base and it also said that the sv_defaultgame was invalid
If I recall correctly you set it in the server.cfg file its sv_defaultgamemode radbox, if you set it on the command line it is +sv_defaultgamemode radbox. I would try making sure that the folder you have Radioactive Sandbox in is called radbox.
Oh man, I love radbox I hope you will keep updating it
[QUOTE=ddrp-darkness;32899908]Sounds good it's up to what Rambo says, I have sufficient Lua knowledge to continue RadBox (Adapted from C++). I hope he gives us permission.[/QUOTE] I don't have gmod installed currently but i'm all for adding new feature to radbox, as long as they are reasonable/useful. I'll probably reinstall sometime soon and muck around with radbox some more. What features would make more people want to play this?
[QUOTE=twoski;32902013]I don't have gmod installed currently but i'm all for adding new feature to radbox, as long as they are reasonable/useful. I'll probably reinstall sometime soon and muck around with radbox some more. What features would make more people want to play this?[/QUOTE] Anomalies more frequent More NPC's (Reskins of same Npc's but with different names) It will make world feel more "alive"
I may add some more anomalies for fun. Can anyone think of more interesting anomalies they'd like to see? Maybe a mutated shrub or something harder to spot... If anyone here wants to host a 12-24 slot server for this i'd be happy to give you new features to betatest.
I currently am hosting a Radbox server, I can host an additional one for testing. Also would you like my updated copy of Radbox with Customizable weapons integrated? They work great with the gamemode, for an NPC reskin I would first try adding snorks ([url]http://www.garrysmod.org/downloads/?a=view&id=47926[/url]). I have also created seperate zombie and rogue spawns, perhaps you could make snorks spawn at zombie spawn points but make them more powerfull and less frequent. Also the rogue NPC's animations work fine in Single Player but on multiplayer the shoot animation seems to be glitchy.
[QUOTE=twoski;32908788]I may add some more anomalies for fun. Can anyone think of more interesting anomalies they'd like to see?[/QUOTE] An anomaly with blinds you for a very short time and maybe one which heals you? [QUOTE=twoski;32908788] If anyone here wants to host a 12-24 slot server for this i'd be happy to give you new features to betatest.[/QUOTE] I'll love to host one, but my PC-Server is coming so i need to wait on that. [QUOTE=ddrp-darkness;32910635]I currently am hosting a Radbox server[/QUOTE] Tell the ip in the comment section in the group and (maybe) i'll join your server soon with a friend of mine, which is tempting to play this again.
The IP Adress is:66.151.244.207:27035, It will be up in the next ten minutes (Added my updated gamemode).
I'm working on putting this up on my server. I was getting phys errors with a ton of props on the map. For example, I climbed a ladder to the top of a oil canister and fell right through it when I got to the top. I'm pretty sure I'm missing game content. I have CS:S on there, and I just put the episodic content on there. Let's see if this will work... EDIT: Looks like DoD:Source. Trying that... Edit: Already had DoD:Source, maybe l4d? If not that then I have a different problem.
So, kinda like multi-player STALKER? That sounds awesome.
Beast Radbox shouldn't require anything more then base GMOD content, and CS:S. If I am correct a few of the props that you can spawn with the prop gun by default are from EP2 (They can be easily removed). Majority of the maps that work well with Radbox require EP2 for trees, EP2 content is not suggested for multiplayer mainly because it halfs the ammount of users that can join your server (Unless you put a link for a content pack). I have been currently re-textured thelonelyroad_1.5 (I remade version of Rambo's lonelyroad). Once I get permission and I am finished completely I will be posting it on garrysmod.org. Yes Apollo this gamemode is just like stalker, there are a few serious stalker roleplays but they have 300MB+ of content. Radbox is very lightweight with around 5MB of content (When it is all bzipped). If anyone is interested I could host a Radbox server for them, I have a VDS they would have to cover the costs for one core (24 Slots 25$ a month). My server has much better performance then cheap providers like xenonservers.
Alright lemme put a different map on. [editline]23rd October 2011[/editline] It seems there is a server error, where phys props aren't actually given physical properties, and all you can do is look at them. This is also related to a bug resulting in instantaneous reload times.
[QUOTE=beast8856;32925335]Alright lemme put a different map on. [editline]23rd October 2011[/editline] It seems there is a server error, where phys props aren't actually given physical properties, and all you can do is look at them. This is also related to a bug resulting in instantaneous reload times.[/QUOTE] Do you have all the necessary games (counter strike, ep2, etc.) because in other gamemodes if there are models that the [b]server[/b] doesn't have items will float in mid air with no physical properties and do nothing.
[QUOTE=jackool;32926448]Do you have all the necessary games (counter strike, ep2, etc.) because in other gamemodes if there are models that the [b]server[/b] doesn't have items will float in mid air with no physical properties and do nothing.[/QUOTE] Yes. The initial install script provided from the wiki included CS:S, DoD:S, hl2mp, tf2, orangebox, and of course, garrysmod.. I've fixed it. Turns out I had to put the cstrike folder inside the orangebox folder. It was installed, just not in the right spot. Thanks for the help. [url=http://www.gametracker.com/server_info/98.221.77.232:27015/][img]http://cache.www.gametracker.com/server_info/98.221.77.232:27015/b_560_95_1.png[/img][/url]
Lets all get drunk [code](RADIO) Syd Petrov: party time wig due bandoliersh (RADIO) Syd Petrov: letsh geg drungh wig due weshtern military alliansh (RADIO) Syd Petrov: gettig pretty fugghed up on vodka (RADIO) Syd Petrov: i feel shiggh Syd Petrov mumbles something completely unintelligible[/code] When you drink too much vodka your words become slurred and hard to read. Wow! What a cool feature *cocks revolver and aims it at temple*
[QUOTE=twoski;32931123]Lets all get drunk [code](RADIO) Syd Petrov: party time wig due bandoliersh (RADIO) Syd Petrov: letsh geg drungh wig due weshtern military alliansh (RADIO) Syd Petrov: gettig pretty fugghed up on vodka (RADIO) Syd Petrov: i feel shiggh Syd Petrov mumbles something completely unintelligible[/code] When you drink too much vodka your words become slurred and hard to read. Wow! What a cool feature *cocks revolver and aims it at temple*[/QUOTE] Oh man, this is awesome One of the reasons I love Die2nite is that your words become slurred when you are scared, drunk, or brain wounded
Sorry, you need to Log In to post a reply to this thread.