News

  Have an issue with a Member of Staff?
Click here.
collapse

Item Development Sheet - Request items for servers here!

Silver Knight · 6364

0 Members and 1 Guest are viewing this topic.

Offline Silver Knight

  • Founder, Director\Developer
  • Loki
  • *
    • Posts: 7123
  • Awards The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them! Over 4000 Posts! Groovy Baby! Has done something which pleases the Tech Bot Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 Played on FALLOUT Roleplay 2010 - 2012 Played on Minecraft Roleplay "Aceon" 2011 - 2013 Played on Terraria Roleplay "Caphori" 2011 - 2013
Item Development Sheet - Request items for servers here!
 
If you think we need a item in one of our servers, aka crussaria, stalker, frp etc. Follow the item format bellow to create the item and i can easily turn it into a item on the server using it.
 
Here is an example with comments. The real format is bellow this example.
 
local ITEM = {};
ITEM.name = "Melon"; //The name of the item, this is what appears as the name.
ITEM.cost = 10; // Cost of the item.
ITEM.model = "models/props_junk/watermelon01.mdl"; //Model path.
ITEM.batch = 1; // How many are sold from the trader menu, don't edit this.
ITEM.weight = 0.35; // Weight of the item.
ITEM.access = "T"; // Access flag (T is general trader)
ITEM.business = true; // (If it appears in the trader menu)
ITEM.category = "Consumables" // (Catagory it appears in)
ITEM.description = "A green fruit, it has a hard outer shell."; // Item Description

Additional Optional Lines:
 
ITEM.useText = "Eat"; // (Custom Text, add back if it needs it aka "Eat", "Punch" "Edit" etc.)
ITEM.useSound = "npc/barnacle/barnacle_crunch3.wav"; // (Custom sound path when used)
ITEM.armor = 0.25; //This is the protection added for suits, here it is 25% bullet protection. If your making a suit add this optional line.
 
Code
 
Server the item is for:
What is the point of the item?:
 
local ITEM = {};

ITEM.name = "";
ITEM.cost = ;
ITEM.model = "";
ITEM.batch = 1;
ITEM.weight = ;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = ""
ITEM.description = "";
 
Additional Optional Lines?:

Should something happen when the item is used? (Gain health, armor, money etc):
 
Should something happen when its dropped? (Change model, loose health, armor etc):
 
« Last Edit: 18-11-2011 by Last.Exile »
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions


Quote
breslau: if i cant cheat i dont wanna play
breslau: period


Offline Duranblackraven

  • **Donator**
  • Catapult-Man
  • *
    • Posts: 569
I remember doing this for all the artifacts we have models for. LE if you'd SF message me the pastebin saves of the example and the artifact code, I'll do them again.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline Turkey

  • **Donator**
  • Werewolf
  • *
    • Posts: 1632
  • Awards Official Member of the Kilopost Club

Server the item is for: Fallout
What is the point of the item?: Just some armor.
 
local ITEM = {};

ITEM.name = "Pre-War Riot Gear";
ITEM.cost = ; 40000 Caps
ITEM.model = "models/fallout/riotgear"; http://www.garrysmod.org/downloads/?a=view&id=126497
ITEM.batch = 1;
ITEM.weight = ; 4
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A dusty rest of riot gear with heavy Kevlar weave.";
 
Additional Optional Lines?:

Should something happen when the item is used? (Gain health, armor, money etc): Equip Armor
 
Should something happen when its dropped? (Change model, loose health, armor etc): Model back to normal ye
 
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline StickyWicket

  • Even Hank was scared!
  • Sumarai
  • ***
    • Posts: 145
I have worked on the code for all the artifacts we where not using, and I hope to god I did this right.
Server the items are for: SRP
What is the point of these items?: To make it so there will be more economically benefitial and unique artifacts.







local ITEM = {};


ITEM.name = "Battery";
ITEM.cost = 14000;
ITEM.model = "models/srp/items/art_battery.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "A very rare artifact, it is formed from an electo anomaly";
 


 
local ITEM = {};


ITEM.name = "Crystal";
ITEM.cost = 9000;
ITEM.model = "models/srp/items/art_crystal.mdl";
ITEM.batch = 1;
ITEM.weight = 0,5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "Created from a burner anomaly, it is some what of a rare artifact.";






local ITEM = {};


ITEM.name = "Crystal Thorn";
ITEM.cost = 4500;
ITEM.model = "models/srp/items/art_crystalthorn.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "A blue, slightly better verson of the Thorn artifact.";






local ITEM = {};


ITEM.name = "Droplet";
ITEM.cost = 500;
ITEM.model = "models/srp/items/art_droplet.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "Most common artifact in the Zone, has very little use to it.";






local ITEM = {};


ITEM.name = "Gravi";
ITEM.cost = 4000;
ITEM.model = "models/srp/items/art_gravi.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "I normal find in the Zone. For some odd reason, you can feel your hands being slightly pulled into it.";






local ITEM = {};


ITEM.name = "Mama's Beads";
ITEM.cost = 15000;
ITEM.model = "models/srp/items/art_mammasbeads.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "The rarest artifact in the zone, hold on to this one with your life.";






local ITEM = {};


ITEM.name = "Meat chunk";
ITEM.cost = 4000;
ITEM.model = "models/srp/items/art_meatchunk.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "A moldy, yellow, meaty patch of flesh. Probably one of the most tasty artifacts in the Zone.";






local ITEM = {};


ITEM.name = "Mica";
ITEM.cost = 7000;
ITEM.model = "models/srp/items/art_mica.mdl";
ITEM.batch = 1;
ITEM.weight = 0.5;
ITEM.access = "A";
ITEM.business = true;
ITEM.category = "Artifacts"
ITEM.description = "A rare artifact, stops most forms of bleeding.";

The item descriptions are subject to change, and so are the prices.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
Uh. Silver, what's the point if most people here can't write the code for Use()? Just wondering really.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Offline Silver Knight

  • Founder, Director\Developer
  • Loki
  • *
    • Posts: 7123
  • Awards The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them! Over 4000 Posts! Groovy Baby! Has done something which pleases the Tech Bot Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 Played on FALLOUT Roleplay 2010 - 2012 Played on Minecraft Roleplay "Aceon" 2011 - 2013 Played on Terraria Roleplay "Caphori" 2011 - 2013
Uh. Silver, what's the point if most people here can't write the code for Use()? Just wondering really.

For idea's and easy implementation. All they are doing is writing out fields like a form.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions


Quote
breslau: if i cant cheat i dont wanna play
breslau: period


Offline Knife_cz

  • S.I.B.W.W.D.N.N.M.
  • HGN Illuminati
  • Epic Poster
  • *
    • Posts: 1372
  • Awards Official Member of the Kilopost Club They were a powerful force in the west decades ago... LGBT Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 This member is a Survivor of the Gay Vampire Castle. Bow to them!
That's nice we will get some artifacts, but can you add some..bonus stats to them?
Like Goldfish adds space in your inventory.


And no idea if it has to do something with this, but why did my blue sunrise/or modified turned into "Sunrise suit (GREEN)" and it looks like normal sunrise :o


And my brown trenchcoat turned into Bandit Enforcer Suit.
« Last Edit: 19-11-2011 by knife_cz »
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions




Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
That's nice we will get some artifacts, but can you add some..bonus stats to them?
Like Goldfish adds space in your inventory.

This is for general item ideas. SK will code the rest.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Offline Lent23

  • A Stalker Until The End
  • **Donator**
  • Catapult-Man
  • *
    • Posts: 535

Note: More variations to the rookie uniform/sunrise create a more atmospheric zone, because a lot of people were seen wearing these suits. These variants will provide the same OOC look and feel of the zone, but different IC effects due to modification.

Server the item is for: Stalker RP
What is the point of the item?:Suits




ITEM.name = "Bandit Mercenary Suit";
ITEM.cost = 10000;
ITEM.model = "models/hgn/srp/banditmerc.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "An brown colored variant of the Western style 'Mercenary Suit' popular with Bandits due to its light weight";
ITEM.armor = 0.20




ITEM.name = "Beige Stalker Jacket";
ITEM.cost = 5000;
ITEM.model = "models/srpmodels/loner1.mdl";
ITEM.batch = 1;
ITEM.weight = 1.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A fashionable beige jacket and ski mask";
ITEM.armor = 0.15



ITEM.name = "Green Stalker Jacket";
ITEM.cost = 5000;
ITEM.model = "models/srpmodels/loner2.mdl";
ITEM.batch = 1;
ITEM.weight = 1.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A fashionable green jacket and ski mask";
ITEM.armor = 0.15



ITEM.name = "Tan Stalker Jacket";
ITEM.cost = 5000;
ITEM.model = "models/srpmodels/loner3.mdl";
ITEM.batch = 1;
ITEM.weight = 1.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A fashionable tan jacket and ski mask";
ITEM.armor = 0.15




ITEM.name = "Sunrise Suit [Lighter]";
ITEM.cost = 20000;
ITEM.model = "models/srp/stalker_hood.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Sunrise Suit modified to be lighter with the cost of lower bullet resistance";
ITEM.armor = 0.10



ITEM.name = "Sunrise Suit [Extra Kevlar]";
ITEM.cost = 22500;
ITEM.model = "models/srp/stalker_hood.mdl";
ITEM.batch = 1;
ITEM.weight = 6kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Sunrise Suit modified to be heavier, but allows more bullet resistance";
ITEM.armor = 0.30



ITEM.name = "Sunrise Suit [Anomalous Protection]";
ITEM.cost = 22500;
ITEM.model = "models/srp/stalker_bes.mdl";
ITEM.batch = 1;
ITEM.weight = 6.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Sunrise Suit modified to have more anomalous protection at the cost of bullet resistance and added weight";
ITEM.armor = 0.10



ITEM.name = "Sunrise Suit [Weight Distribution]";
ITEM.cost = 20000;
ITEM.model = "models/srp/stalker_hood.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Sunrise Suit modified to have better weight distribution without the loss of bullet resistance";
ITEM.armor = 0.20




ITEM.name = "Leather Jacket [Weight Distribution]";
ITEM.cost = 3000;
ITEM.model = "models/srp/rookie4.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Leather Jacket popularized with rookies in the zone with a modification that provides better weight distribution, allowing the wearer to carry more.";
ITEM.armor = 0.10



ITEM.name = "Leather Jacket [Extra Kevlar]";
ITEM.cost = 4000;
ITEM.model = "models/srp/rookie4.mdl";
ITEM.batch = 1;
ITEM.weight = 3.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Leather Jacket popularized with rookies in the zone with a modification that provides more bullet resistance, at the cost of extra weight";
ITEM.armor = 0.15



ITEM.name = "Bandit Jacket [Weight Distribution]";
ITEM.cost = 3000;
ITEM.model = "models/srp/bandit4.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Leather Jacket popularized with bandits in the zone with a modification that provides better weight distribution, allowing the wearer to carry more.";
ITEM.armor = 0.10



ITEM.name = "Bandit Jacket [Extra Kevlar]";
ITEM.cost = 4000;
ITEM.model = "models/srp/bandit4.mdl";
ITEM.batch = 1;
ITEM.weight = 3.5kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A Leather Jacket popularized with bandits in the zone with a modification that provides more bullet resistance, at the cost of extra weight";
ITEM.armor = 0.15




ITEM.name = "Brown Trenchcoat [Hidden Kevlar]";
ITEM.cost = 12500;
ITEM.model = "models/srp/stalker_bandit_veteran.mdl";
ITEM.batch = 1;
ITEM.weight = 2kg;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "A brown trenchcoat popular with Loners and Bandits alike, with special kevlar hidden underneath, to add bullet resistance with no setback other than price.";
ITEM.armor = 0.23
« Last Edit: 19-11-2011 by Lent23 »
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

"Mommy, when is Daddy coming home?"
"Here, Alex.. Daddy sent us a package.. The soldier told us that it.. might be a while until Daddy's done with his service. Don't worry, you'll see him soon, Alex.."
"He's always gone! I never get to see him!"


Offline Duranblackraven

  • **Donator**
  • Catapult-Man
  • *
    • Posts: 569
All those other merc suits are donator only.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline StickyWicket

  • Even Hank was scared!
  • Sumarai
  • ***
    • Posts: 145
Lent, the brown merc suits were already added, and we already have kevlar in the script, so no need for "Extra Kevlar." And why you took just about every rookie model and turnned it into a suit...I have no idea.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline Lent23

  • A Stalker Until The End
  • **Donator**
  • Catapult-Man
  • *
    • Posts: 535
Lent, the brown merc suits were already added, and we already have kevlar in the script, so no need for "Extra Kevlar." And why you took just about every rookie model and turnned it into a suit...I have no idea.
Damn, Sticky, I'm only trying to help and create a world where sunrise suits and rookie suits are more used and less shit than they are right now at a higher price.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

"Mommy, when is Daddy coming home?"
"Here, Alex.. Daddy sent us a package.. The soldier told us that it.. might be a while until Daddy's done with his service. Don't worry, you'll see him soon, Alex.."
"He's always gone! I never get to see him!"


Offline Tom

  • The man who can pass an entire day, by just telling stories.
  • HGN Illuminati
  • Heroic Member
  • *
    • Posts: 1818
  • Awards Official Member of the Kilopost Club From the moon... Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 Played on FALLOUT Roleplay 2010 - 2012
Could you PM me or something the codes to make weapons/fix weapons?
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Oh boy.
Strap yourselves in, it's time for the great 'obligatory' SRP resurrection of 2013/14/15/16/22


Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
Could you PM me or something the codes to make weapons/fix weapons?

download a swep base from garrysmod.org and start coding
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Offline mxh24

  • .:๖ۣۜFrozenFire:.
  • Sumarai
  • ***
    • Posts: 192
Server the item is for:Fallout Roleplay
What is the point of the item?: A suit
 
local ITEM = {};

ITEM.name = "Nikeout";
ITEM.cost = 4000;
ITEM.model = "models/outfit/nikout_inhelm1.mdl";
ITEM.batch = 1;
ITEM.weight = 25.5;
ITEM.access = "T";
ITEM.business = true;
ITEM.category = "Suits"
ITEM.description = "A white overcoat with kevlar and a helmet.";
 
Additional Optional Lines?:ITEM.useText = "Wear";ITEM.armor = 0.20;

Should something happen when the item is used?: Wearing the model, gain bullet resistance.
 
Should something happen when its dropped?: Nope.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



"When in doubt, mumble."


Offline Tom

  • The man who can pass an entire day, by just telling stories.
  • HGN Illuminati
  • Heroic Member
  • *
    • Posts: 1818
  • Awards Official Member of the Kilopost Club From the moon... Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 Played on FALLOUT Roleplay 2010 - 2012
Server the item is for: Fallout Roleplay
What is the point of the item?: Make use of the NCR models we have.
 

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 1";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_09.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 2";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_04.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 3";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_02.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 4";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_01.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 5";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_03.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 6";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_05.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 7";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_06.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 8";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_07.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Soldier Uniform Variant 9";
ITEM.cost = 1500;
ITEM.model = "models/ncr/ncr_08.mdl";
ITEM.batch = 1;
ITEM.weight = 26;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. This suit offers 16% protection.";
ITEM.armor = 0.16;

-------------------------------------------------------------------------------------------

local ITEM = {};

ITEM.name = "NCR Officer Uniform";
ITEM.cost = 2000;
ITEM.model = "models/ncr/ncr_officer.mdl";
ITEM.batch = 1;
ITEM.weight = 24;
ITEM.access = "R";
ITEM.business = true;
ITEM.category = "Clothing"
ITEM.description = "This is an average NCR uniform that features hardened leather shoulder pads, and a metal breastplate for protection. The NCR emblem is painted on the breastplate. It seems to be modified to fit a lighter and stronger breastplate. It also features a green camo beret with a golden NCR emblem on it This suit offers 18% protection.";
ITEM.armor = 0.18;
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Oh boy.
Strap yourselves in, it's time for the great 'obligatory' SRP resurrection of 2013/14/15/16/22


Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
26kg?you won't be able to carry it by default, even with 100 strength.
IGNORANT JAKE
« Last Edit: 02-04-2012 by Jake »
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Offline Khorn

  • Heroic Member
  • *****
    • Posts: 1805
  • Awards Official Member of the Kilopost Club Pack your shit in a box and get out.
Isn't the weight negated if you wear it?
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline Overwatch

  • **Donator**
  • S.T.A.L.K.E.R.
  • *
    • Posts: 342
Isn't the weight negated if you wear it?

Nope, Power Armor weighs like 46KG and it's damn near impossible to get a gun you can holster after you bring it out.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline Tom

  • The man who can pass an entire day, by just telling stories.
  • HGN Illuminati
  • Heroic Member
  • *
    • Posts: 1818
  • Awards Official Member of the Kilopost Club From the moon... Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 Played on FALLOUT Roleplay 2010 - 2012
Thats how much it weighs right now Jake.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Oh boy.
Strap yourselves in, it's time for the great 'obligatory' SRP resurrection of 2013/14/15/16/22


Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
Thats how much it weighs right now Jake.

well
fuck
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Offline Steven :D

  • ♥ ~Kawaii!~ Member Extraordinaire ♥
  • HGN Illuminati
  • Werewolf
  • *
    • Posts: 1779
  • Awards This member is a Survivor of the Gay Vampire Castle. Bow to them! HGN Special Agent They were a powerful force in the west decades ago... Official Member of the Kilopost Club The Kawaii award is awarded to veterans of the Anime Forum. Played on Terraria Roleplay "Caphori" 2011 - 2013 Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013
give me like 2 hrs + and i'll post some neat ideas
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions




Offline Khorn

  • Heroic Member
  • *****
    • Posts: 1805
  • Awards Official Member of the Kilopost Club Pack your shit in a box and get out.
2 hours and no post. Jeez Steven.


Also, if anyone feels up to it. Female models of characters would be nice for other players that like to mix it up gender wise.
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions



Offline Lent23

  • A Stalker Until The End
  • **Donator**
  • Catapult-Man
  • *
    • Posts: 535
No brandon. Just no. That was a terrible idea.
« Last Edit: 03-04-2012 by Tom »
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

"Mommy, when is Daddy coming home?"
"Here, Alex.. Daddy sent us a package.. The soldier told us that it.. might be a while until Daddy's done with his service. Don't worry, you'll see him soon, Alex.."
"He's always gone! I never get to see him!"


Offline jaik

  • **Donator**
  • Vampire
  • *
    • Posts: 2975
  • Awards 2K Poster As easy as stabbing yourself in the dick. LGBT Played on FALLOUT Roleplay 2010 - 2012 Played on S.T.A.L.K.E.R Roleplay 2008 - 2013 The Kawaii award is awarded to veterans of the Anime Forum. This member is a Survivor of the Gay Vampire Castle. Bow to them!
lol tnb

ha

ha
friendly
0
funny
0
informative
0
agree
0
disagree
0
pwnt
0
like
0
dislike
0
late
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions

Blake.H: And im also working on whipping him into shape
Blake.H: He's nice
Blake.H: He doesn't moan
Blake.H: The sheer obedience is enough to fuel my erection anyway


Tags:
     

    * Hello there Guest

    Welcome to the HyperGaming Network forums! We are a large gaming and mod community. Please signup to gain access to other sections of the forum.




    If you are having problems navigating the forums, please see this topic.

    Forum News

      Have an issue with a Member of Staff?
    Click here.

    * Users Online


    Dot Guests: 828 | Dot Users
    SimplePortal 2.3.7 © 2008-2023, SimplePortal