• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Request] Gun Rotation Script
#1
Hello guys I would really like a script for my Infected server. I want that the players alive get a new weapon every 30 seconds and that there is a timer/countdown with the name of the next weapon displayed

If anyone can make it or if any script already exists please send me the .dll file o ra rar file directly

That pretty much sums it up Big Grin

Thanks in advance Smile
  Reply
#2
Sorry, TeknoGod is not supported @this forum.
C++/Obj-Cdeveloper. Neko engine wip
Steam: Click
  Reply
#3
(01-03-2014, 01:51)SailorMoon Wrote: Sorry, TeknoGod is not supported @this forum.

A Plugin Like That Would Be Nice! Big Grin Not Unfinished! Troll
~FYANB~ Servers Website

Primary Account:
[Image: 76561198070236721.png]
Secondary Account:
[Image: 76561198096107676.png]
Third Account:
[Image: 76561198164751656.png]
  Reply
#4
(01-03-2014, 04:07)Casper Wrote:
(01-03-2014, 01:51)SailorMoon Wrote: Sorry, TeknoGod is not supported @this forum.

A Plugin Like That Would Be Nice! Big Grin Not Unfinished! Troll

When you will recognize that you have a lot of deals... you'll understand meh.
C++/Obj-Cdeveloper. Neko engine wip
Steam: Click
  Reply
#5
Well, I wanted to do a plugin like this, but I don't know how to do a timer. Can someone help me? Big Grin
[Image: b_560_95_1.png]
  Reply
#6
Use the extensions: http://www.itsmods.com/forum/Thread-Rele...sions.html
~FYANB~ Servers Website

Primary Account:
[Image: 76561198070236721.png]
Secondary Account:
[Image: 76561198096107676.png]
Third Account:
[Image: 76561198164751656.png]
  Reply
#7
CSHARP Code
  1. using System;
  2. using System.Collections.Generic;
  3. using Addon;
  4. using System.Text;
  5. using System.Timers;
  6.  
  7. namespace ClassLibrary1
  8. {
  9. public class Class1:CPlugin
  10. {
  11. Timer timer = new Timer();
  12.  
  13. string[] PrimaryWeapons = { "iw5_acr_mp", "iw5_fad_mp","iw5_msr_mp_msrscope","iw5_ak47_mp" };
  14.  
  15. public override void OnServerLoad()
  16. {
  17. timer.Elapsed += new ElapsedEventHandler(tmr);
  18. timer.Interval = 30000;
  19. timer.Enabled = true;
  20. }
  21. public void tmr(object s, ElapsedEventArgs e)
  22. {
  23.  
  24. foreach (ServerClient c in GetClients())
  25. {
  26.  
  27. if (c.Team == Teams.Allies)
  28. {
  29. Random rnd = new Random();
  30.  
  31. int i = rnd.Next(0, PrimaryWeapons.Length);
  32.  
  33. int weap = GetWeapon(PrimaryWeapons[i]);
  34.  
  35. c.Other.PrimaryWeapon = weap;
  36. c.Other.CurrentWeapon = weap;
  37. }
  38.  
  39. iPrintLnBold("Weapons Changed!", c);
  40. }
  41. }
  42. }
  43. }


It's just a code which I used a while ago, it doesn't contain the next weapon info, but it shouldn't be hard to add.
  Reply
#8
(01-03-2014, 01:23)Astreet Wrote: Hello guys I would really like a script for my Infected server. I want that the players alive get a new weapon every 30 seconds and that there is a timer/countdown with the name of the next weapon displayed

If anyone can make it or if any script already exists please send me the .dll file o ra rar file directly

That pretty much sums it up Big Grin

Thanks in advance Smile

it is forum not support InfinityScript & teknogods
  Reply
#9
(01-10-2014, 16:35)[HARD] Tony. Wrote:
(01-03-2014, 01:23)Astreet Wrote: Hello guys I would really like a script for my Infected server. I want that the players alive get a new weapon every 30 seconds and that there is a timer/countdown with the name of the next weapon displayed

If anyone can make it or if any script already exists please send me the .dll file o ra rar file directly

That pretty much sums it up Big Grin

Thanks in advance Smile

it is forum not support InfinityScript & teknogods

someone else asked for the plugin for STEAM
~FYANB~ Servers Website

Primary Account:
[Image: 76561198070236721.png]
Secondary Account:
[Image: 76561198096107676.png]
Third Account:
[Image: 76561198164751656.png]
  Reply
#10
(01-10-2014, 16:42)Casper Wrote:
(01-10-2014, 16:35)[HARD] Tony. Wrote:
(01-03-2014, 01:23)Astreet Wrote: Hello guys I would really like a script for my Infected server. I want that the players alive get a new weapon every 30 seconds and that there is a timer/countdown with the name of the next weapon displayed

If anyone can make it or if any script already exists please send me the .dll file o ra rar file directly

That pretty much sums it up Big Grin

Thanks in advance Smile

it is forum not support InfinityScript & teknogods

someone else asked for the plugin for STEAM
there is a plug on pirates, aka random weapons for Infected gametype, using only Inifinyty scipt...
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Request] exceeded the limits of the map script 19GHOST90 1 2,103 08-24-2014, 13:50
Last Post: hillbilly

Forum Jump:


Users browsing this thread: 1 Guest(s)