Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. [Support] Script zombie / _clientids.gsc not working

[Support] Script zombie / _clientids.gsc not working

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
25 Posts 10 Posters 3.0k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H3X1Cundefined Offline
    H3X1Cundefined Offline
    H3X1C
    Plutonium Staff
    wrote on last edited by
    #6

    If you don't post your source code, we can't help.

    1 Reply Last reply
    0
    • bryanundefined Offline
      bryanundefined Offline
      bryan
      wrote on last edited by bryan
      #7
      This post is deleted!
      1 Reply Last reply
      0
      • bryanundefined Offline
        bryanundefined Offline
        bryan
        wrote on last edited by
        #8

        #include maps\mp_utility;
        #include common_scripts\utility;
        #include maps\mp\zombies_zm;
        #include maps\mp\zombies_zm_utility;

        init()
        {
        level.clientid = 0;
        level.perk_purchase_limit = 9;
        level thread onplayerconnect();
        player thread onplayerspawned();
        }

        onplayerconnect()
        {
        for ( ;; )
        {
        level waittill( "connecting", player );
        player.clientid = level.clientid;
        level.clientid++;
        player thread onplayerspawned();
        }
        }

        onplayerspawned()
        {
        level endon( "game_ended" );
        self endon( "disconnect" );

        for(;;)
        {
        	self waittill( "spawned_player" );
        	self IPrintLnBold( "^5whatever welcome message you want here" );
        	self welcome();
        }
        

        }

        welcome()
        {
        self waittill( "spawned_player" );
        self maps/mp/zombies/_zm_perks::give_perk( "specialty_armorvest" );
        self giveWeapon( "mp5k_upgraded_zm" );
        wait 7;
        self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
        }

        1 Reply Last reply
        0
        • bryanundefined Offline
          bryanundefined Offline
          bryan
          wrote on last edited by
          #9

          i gave it to you just in up , but when i make it by "_clientids.gsc" the script is not working , i think i make something hurt ,

          1 Reply Last reply
          0
          • mikzyundefined Offline
            mikzyundefined Offline
            mikzy
            Banned
            wrote on last edited by mikzy
            #10

            do you compile the script

            1 Reply Last reply
            0
            • bryanundefined Offline
              bryanundefined Offline
              bryan
              wrote on last edited by
              #11

              no , i don’t really how make the compile

              1 Reply Last reply
              0
              • bryanundefined Offline
                bryanundefined Offline
                bryan
                wrote on last edited by
                #12

                do you have a tuto simple on youtube ? or so you can explains in message step by step. Thanks

                luigistyleundefined 1 Reply Last reply
                0
                • bryanundefined bryan

                  do you have a tuto simple on youtube ? or so you can explains in message step by step. Thanks

                  luigistyleundefined Offline
                  luigistyleundefined Offline
                  luigistyle
                  Plutonium Staff
                  wrote on last edited by
                  #13

                  bryan said in Script zombie / _clientids.gsc not working:

                  do you have a tuto simple on youtube ? or so you can explains in message step by step. Thanks

                  Compiler should be included in the tutorial thread for loading GSC I think

                  1 Reply Last reply
                  0
                  • bryanundefined bryan

                    Hello , When i put the _clientids.gsc i have a message like that:

                    fghjk.png

                    how to fix the problem ?. Thanks

                    Hypeundefined Offline
                    Hypeundefined Offline
                    Hype
                    Banned
                    wrote on last edited by
                    #14
                    This post is deleted!
                    luigistyleundefined 1 Reply Last reply
                    0
                    • Hypeundefined Hype

                      This post is deleted!

                      luigistyleundefined Offline
                      luigistyleundefined Offline
                      luigistyle
                      Plutonium Staff
                      wrote on last edited by
                      #15

                      Hype Don't use GSC Studio to compile

                      1 Reply Last reply
                      0
                      • bryanundefined Offline
                        bryanundefined Offline
                        bryan
                        wrote on last edited by
                        #16

                        luigistyle what is the best for compil a folder ?

                        luigistyleundefined 1 Reply Last reply
                        0
                        • bryanundefined bryan

                          luigistyle what is the best for compil a folder ?

                          luigistyleundefined Offline
                          luigistyleundefined Offline
                          luigistyle
                          Plutonium Staff
                          wrote on last edited by
                          #17

                          bryan said in Script zombie / _clientids.gsc not working:

                          luigistyle what is the best for compil a folder ?

                          There's a compiler provided on the GSC Tutorial Thread I believe

                          1 Reply Last reply
                          0
                          • Sassundefined Offline
                            Sassundefined Offline
                            Sass
                            Plutonium Staff
                            wrote on last edited by
                            #18

                            Here's s a link to the GSC Toolkit. Contains the compiler as well as dumped files.

                            1 Reply Last reply
                            0
                            • bryanundefined Offline
                              bryanundefined Offline
                              bryan
                              wrote on last edited by
                              #19

                              okay thanks i gonna try to compil , then back to you if I don’t understand

                              1 Reply Last reply
                              0
                              • bryanundefined Offline
                                bryanundefined Offline
                                bryan
                                wrote on last edited by
                                #20

                                error.png if i understood correctly my script he is not good ?

                                1 Reply Last reply
                                0
                                • bryanundefined Offline
                                  bryanundefined Offline
                                  bryan
                                  wrote on last edited by
                                  #21

                                  someone got any ideas why i have the error ?

                                  Drgnundefined 1 Reply Last reply
                                  0
                                  • bryanundefined bryan

                                    someone got any ideas why i have the error ?

                                    Drgnundefined Offline
                                    Drgnundefined Offline
                                    Drgn
                                    Plutonium Staff
                                    wrote on last edited by
                                    #22

                                    bryan your include is wrong or you're using a poorly decompiled include.

                                    1 Reply Last reply
                                    0
                                    • bryanundefined Offline
                                      bryanundefined Offline
                                      bryan
                                      wrote on last edited by
                                      #23

                                      Ok guys I managed to do it , I think that you should do a tutorial to explain it because I think there are plenty of people who are in the same problem as me , thank you so much !! ❤

                                      homuraundefined 1 Reply Last reply
                                      0
                                      • bryanundefined bryan

                                        Ok guys I managed to do it , I think that you should do a tutorial to explain it because I think there are plenty of people who are in the same problem as me , thank you so much !! ❤

                                        homuraundefined Offline
                                        homuraundefined Offline
                                        homura
                                        Banned
                                        wrote on last edited by
                                        #24

                                        bryan we're happy to hear you solved it. It would also help if you post your solution just in case there are others that run into the same issue.

                                        1 Reply Last reply
                                        0
                                        • Phelis041undefined Offline
                                          Phelis041undefined Offline
                                          Phelis041
                                          wrote on last edited by
                                          #25

                                          can i use any compiler.
                                          Also, none of the links in the tutorial work.

                                          1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • 1
                                          • 2
                                          • Login

                                          • Don't have an account? Register

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