v1.0 released, let this thread die.
[url]http://www.facepunch.com/showthread.php?p=20271346#post20271346[/url]
I have 2 things. Play Stalker and wtf do you want a Gmod stalker for?!?!
for fun? i dunno, i got bored. I have nothing against STALKER, i just wanted to have a go at making something similar to it that supports multiplayer.
the whole concept behind STALKER is really easy to replicate. Making the inventory was half the battle, the next hardest thing to do will be implementing a quest system thing.
I also have a good mapper who has agreed to make a version of his map for this gamemode.
The map is here: [url]http://www.facepunch.com/showthread.php?t=823800[/url]
hey
it's rambo_6
I loved shitbot.
[QUOTE=Rambo_9;20111931]for fun? i dunno, i got bored. I have nothing against STALKER, i just wanted to have a go at making something similar to it that supports multiplayer.
the whole concept behind STALKER is really easy to replicate. Making the inventory was half the battle, the next hardest thing to do will be implementing a quest system thing.
I also have a good mapper who has agreed to make a version of his map for this gamemode.
The map is here: [URL]http://www.facepunch.com/showthread.php?t=823800[/URL][/QUOTE]
Now this is gonna be REAL damn good.
Good luck.
[editline]05:03AM[/editline]
Don't forget those awesome radio tracks in each of the faction's camps.
I'm trying to go with the least amount of custom content as possible, but i'll consider adding something like that.
The NPC dealers talk to you when you trade with them now. Pretty much exactly like how STALKER does it.
Should be cool with gm_apocalypse.
Sounds interesting Rambo, will keep an eye on this and hope it gets finished. :buddy:
Don't forget to add more factions, since I don't think 3 is enough...
For the day/night cycle, are you going to be having a skybox that fades from one texture to another?
It depends on the map, but yes that is how it's done. I'll look into that eventually.
Howabout putting some NPCs that spawn in random locations? That way the players won't always kill each other at every opportunity, 'cuz they're too busy fighting off antlions.
You could write a script that randomly selects a preset number of AI nodes after a certain amount of time, and spawns a random NPC at each one. Dunno if this is possible, I'm not a coder. Just a suggestion though.
I don't want to use HL2 NPC's, this is aimed towards more of a fallout3/STALKER style environent.
I haven't ruled out using rebel SNPC's though since that's the playermodel for the Bandoliers.
I just finished coding all of the trader NPC's. Next up i'll probably do a weapons base and make inventory objects for weapons (so you can pick up and drop weapons using the inventory).
This could be interesting. I enjoyed playing SoC, but I hear the multiplayer is pretty terribad. This may not emulate it fully, but still could be fun nonetheless.
I wonder if night in this gamemode will be as dark as it is in stalker, because I remember that I couldn't see shit without a flashlight.
Interesting Rambo_9
Rambo_6, next to shitbot, this is great! :v:
This looks very interesting. SO will you be able to build things which loot/items you find?
Not sure what you mean, but i'll explain the items system.
If you're the server owner you can add your own items to the game. The items are completely customizable.
[IMG]http://i232.photobucket.com/albums/ee200/SechsCock/gm_construct0002-5.jpg[/IMG]
[IMG]http://i232.photobucket.com/albums/ee200/SechsCock/gm_construct0001-8.jpg[/IMG]
I've just finished the first weapon item. Weapons are connected directly to the inventory system now, so dropping the weapon from your inventory will strip the weapon from you.
So now that the weapon system is out of the way i can get to work on something else. Probably the faction picker menu.
Here's what the weapon code looks like, for those of you who are interested.
[lua]
item.Register( {
Name = "HK MP5",
Description = "This accurate submachine gun has a fast rate of fire.",
Stackable = false,
Type = ITEM_WPN_BANDOLIERS,
Weight = 20,
Price = 300,
Rarity = 0.50,
Model = "models/weapons/w_smg_mp5.mdl",
Weapon = "rad_mp5",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
CamPos = Vector(35,12,5),
CamOrigin = Vector(0,0,0)
} )[/lua]
It's honestly the easiest thing to use, the only frustrating part is the camera position and origin sometimes being hard to align.
Awesome, great work! What's next on the agenda, then? Fleshing out the weapon system with statistics for each gun, weapon mods, wear and repair, jamming and the like? Or perhaps the movement system, sprinting, crouching, double crouching, leaning, dragging, and so on? Player attributes and resistances? Radiation, anomalies, and artifacts? Mutants? :dance:
Guns are already taken care of, there's support for snipers and normal firearms. I don't want weapon jamming because it's just annoying. Same with weapon wear and tear, it's just more hassle than it's worth.
Player movement is already set up too. You have stamina like in STALKER, and carrying too much weight will make it harder to move around efficiently. There won't be any resistance stuff or suits. But there will be items you can equip that make you immune to certin things such as poisonous gases or radiation.
I doubt i'll add anomalies and artifacts since this isn't a port of STALKER per se, it's just something similar. As for mutants, i was toying with letting one player be a radioactive zombie if he dies. Just to spice it up a little.
Will you be able to, say, customize your weapon?
You know, like in S.T.A.L.K.E.R, I [i]REALLY[/i] liked that feature.
I'm unsure if SWEP functions are really all that customizable to begin with...
i could make it so you can have silencers and scopes but i really can't be arsed to.
So you could integrate this into the game if you wanted?
[url]http://www.garrysmod.org/downloads/?a=view&id=87297[/url]
probably but i really don't feel like it. maybe if i get bored, but for now i'm focusing on finishing the other stuff.
i need an artist!
[url]http://www.facepunch.com/showthread.php?t=893797[/url]
Is your day/night cycle going to be mapping based(having the light_environment fade) or lua based(fading the screen to make it look darker) or something completely different
For map like gm_apocalypse it's going to be impossible if it has to fade the light_environment. I've already tried, and it's an FPS killer for a map that size
i'm not sure how foszor did his, i think it involved a custom skybox texture.
if i were to implement day/night it would only affect the color of eveything, i wouldn't bother with the shadows or a moving sun.
Alright, implemented the radar (stole the texture from The Stalker since i'm a lazy ass). It detects enemies as long as they're moving, and it also detects stashes, friendly people, and corpses.
Also did the HUD. Pretty basic. The icons on the left indicate what inflictions you have (bleeding, radiation, poison).
[IMG]http://i232.photobucket.com/albums/ee200/SechsCock/gm_construct0002-6.jpg[/IMG]
Sorry, you need to Log In to post a reply to this thread.