Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

12345abcdefghundefined

12345abcdefgh

@12345abcdefgh
About
Posts
3
Topics
1
Shares
0
Groups
0
Followers
1
Following
0

Posts

Recent Best Controversial

  • Killstreak HUD GSC Error
    12345abcdefghundefined 12345abcdefgh

    nvm i just used ur new gsc script and it works even better!

    MW3 Client Support

  • Killstreak HUD GSC Error
    12345abcdefghundefined 12345abcdefgh

    Resxt i got it from here : https://github.com/whoismh11/plutoiw5-scripts#how-to-use
    and cant find ur comments

    MW3 Client Support

  • Killstreak HUD GSC Error
    12345abcdefghundefined 12345abcdefgh

    Keep getting and error when i try to display the killstreak counter on my HUD in private match. The error says "unexpected &" and when i remove the "&" the text for "killstreak" doesnt pop up. Heres the code i took from a forum:

    #include maps\mp\gametypes_hud_util;

    init() {
    level thread onPlayerConnect();
    }

    onPlayerConnect() {
    for (;;) {
    level waittill("connected", player);
    player thread killstreakPlayer();
    }
    }

    killstreakPlayer() {
    self endon("disconnect");
    level endon("game_ended");
    self.hudkillstreak = createFontString("Objective", 1);
    self.hudkillstreak setPoint("CENTER", "TOP", "CENTER", 10);
    self.hudkillstreak.label = & "^5KILLSTREAK: ^7";

    while (true) {
        self.hudkillstreak setValue(self.pers["cur_kill_streak"]);
        wait 0.5;
    }
    

    }

    MW3 Client Support
  • 1 / 1
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate