Post Reply 
 
Thread Rating:
  • 7 Votes - 4.43 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Release Shop system for Infected gametype
03-29-2012, 02:00 (This post was last modified: 02-08-2013 19:46 by SailorMoon.)
Post: #1
Wink Shop system for Infected gametype
Hey guys, i made small version of Shop system for Infected gametype. That's includes all smgs, lmgs, assaults, and explosives, shotguns. Earn points by killing.


NEW SHOP SYSTEM + SOURCE
http://www.itsmods.com/forum/Thread-Rele...-Shop.html








How to use?!
Easy to use. Instruction, Type:
!shop - Show two shop categories
!ammo - Buy ammo
!tut - Help
!mypoints - Your points

Shop categories
Shop has two categories: Weapons and Perks. "Zombies" can't buy weapons, but they can buy throwing knife and emp grenade. Humans can buy weapons.
Also "zombies" can buy some perks. (Ex. Cold blooded)
Weapon categories:
!smg - Prints SMG list
!lmg - Prints LMG list
!assault - Prints assault list
!shotguns - Prints shotguns list
!snipe - Prints snipers list
!expl - Prints explosives list
Perks are default. No categories.

Information
You can edit costs for weapons! Open sv_config.ini and find mw3shop tab.
To buy weapon you need to reach enough score.
Perks are cleaning on spawn.
ONLY FOR INFECTED GAMETYPE
Ask me if you need not for infected gametype.

Problem
Nope

Bugs
Not detected.

Coming features
- Attachments

Video



Screenshots
[Image: p51200iw5mp%202012-03-28%2023-54-44-61c231.bmp]
[Image: k17085iw5mp%202012-03-28%2023-54-21-34w231.bmp]


Credits
@SailorMoon - Made it
@youtube comments - idea Dumb Bitch

Download:

V1 - First releae
V2 - Added more configurations (disables etc)
V3 - Fixed all, added new points system...

.rar  mw3shop.rar (Size: 7.37 KB / Downloads: 481)
Related links

Steam: jaydi2112
[Image: userbar7q.gif]
[Image: 45296.png]
[Image: 3OM7E.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 7 users say Thank You to SailorMoon for this post:
G-Man (03-29-2012), iPaddie (03-29-2012), llARXANGELll (10-20-2012), Mauser (03-30-2012), Metro-Police#45 (03-29-2012), sky-rebel (07-09-2012), surtek (03-29-2012)
03-29-2012, 02:33
Post: #2
RE: Shop system for Infected gametype
This looks sick...im confused as to how the perks work though..are you saying that only zombies can buy perks? Also, can you limit what items are allowed to be purchased? because I don't always want zombies buying throwing knives...

Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 06:01 (This post was last modified: 03-29-2012 06:03 by JariZ.)
Post: #3
Re: Shop system for Infected gametype
Where's my credits...
On topic: looks awesome
Also I told you to create your point system, not use the one that's already there

[Image: k5sVYyb.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 06:11
Post: #4
RE: Shop system for Infected gametype
You can make the opportunity to purchase an automatic perk for zombies? For example for the murder of two appointed by the perk, even for the next two and so on?
Related links

[Image: logo3.gif][Image: youtube.gif][Image: logovk.gif][Image: face.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 09:37
Post: #5
RE: Shop system for Infected gametype
Too fast to read the info, Undecided

[Image: veovuq.png]
Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to Yamato for this post:
llARXANGELll (10-15-2012)
03-29-2012, 10:02
Post: #6
RE: Shop system for Infected gametype
@Jaydi

make it check for g_gametype = "infect" before it starts OnMapChange()

so those with mixed gametypes, can also use it!

else you'll end up with this sytem enabled in TDM asswell Tongue

CSHARP Code
  1. String DVg_gametype = GetDvar("g_gametype");
  2. if (DVg_gametype == "infect")
  3. {
  4. RunYourPlugin();
  5. } else {
  6. ServerPrint("[Epic-FAIL] Cant run this plugin while playing (" + DVg_gametype + ") mode!!");
  7. }


An just to reply to this mplugin in general, great idea! Smile

(XS4ALL/GoT2DayZ) DayZ Servers (http://got2dayz.nl)
[Image: b_350_20_2E3226_383F2D_D2E1B5_5A6C3E.png]
[Image: b_350_20_2E3226_383F2D_D2E1B5_5A6C3E.png]
[Image: b_350_20_2E3226_383F2D_D2E1B5_5A6C3E.png]
http://fb.me/GoT2DayZ
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
[-] The following 1 user says Thank You to JoSchaap for this post:
SailorMoon (03-29-2012)
03-29-2012, 10:23 (This post was last modified: 03-29-2012 10:27 by hillbilly.)
Post: #7
RE: Shop system for Infected gametype
Good idea however, as infected is usually quick paced, imo their gonna end up dead while choosing weapons.

Not dissing your work at all but the reality is i really don't think it will work very well as it is in infected.

[Image: b_560_95_1.png]


[Image: b_560_95_1.png]
Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 10:31 (This post was last modified: 03-29-2012 10:36 by [Z00MBY] Alex.)
Post: #8
RE: Shop system for Infected gametype
You can choose to publish the source code of the plugin? This is necessary to translate the plugin into another language and change the commands in the chat.
For example command !ammo intersects with another plug-in (unlimited ammo)

Also, the show is very little communication. Do not have time to read the text.

Even as your plug-in works with the plugin @ Pozzuh Permission plugin?
All chat commands that use the users need to add in the Users?
Related links

[Image: logo3.gif][Image: youtube.gif][Image: logovk.gif][Image: face.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 10:33
Post: #9
RE: Shop system for Infected gametype
Altough I only understand 50% of what this guy is saying ^
I do agree with him, there's no way you can read the whole list in 1 sec
How about
iprintlnbold
thread.sleep
iprintlnbold
thread.sleep
etc
?

[Image: k5sVYyb.gif]
Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2012, 10:44 (This post was last modified: 03-29-2012 10:45 by zxz0O0.)
Post: #10
RE: Shop system for Infected gametype
Translation @litgar :

Quote:@Jaydi is it possible that you publish source code because I (@"litgar") want to translate/change some commands because for example !ammo is also used by unlimited ammo plugin.
[...]
Does it work with @Pozzuh's Permission plugin? Do I need to need to add all user commands in the Users?

[Image: azuw.jpg]
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Rainbow [Release] Moonlight Shop SailorMoon 35 2,268 05-14-2013 11:06
Last Post: Mibbix
  Moonlight Shop HELP Hallla 4 149 05-12-2013 16:05
Last Post: Hallla
Its My Birthday! [Release] Juggernaut plugin for infected koro35 30 1,766 03-01-2013 13:01
Last Post: hillbilly
  [Release] AntiRage for Infected Game Mode yokai134 16 1,137 01-11-2013 06:27
Last Post: yokai134
  [Request] MW3 infected help Cobra3164 1 798 04-15-2012 22:55
Last Post: pollarpart

Forum Jump:


User(s) browsing this thread: 1 Guest(s)
Media Embeding by Simple Audio Video Embeder