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

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [ZM] Universal bank for server and custom games

[ZM] Universal bank for server and custom games

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
20 Posts 12 Posters 5.2k Views 1 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.
  • CrissJ0undefined CrissJ0

    JezuzLizard said in [ZM] Universal bank for server and custom games:

    If you find any bugs while using the mod please report them in this thread.

    I received this error when loading the map [origins].

    CoD Black Ops II Console 2_11_2022 16_38_09.png

    CoD Black Ops II Console 2_11_2022 16_38_16.png

    JezuzLizardundefined Offline
    JezuzLizardundefined Offline
    JezuzLizard
    Plutonium Staff
    wrote on last edited by
    #8

    CrissJ0 Are you running any other mods? I did test the mod on Origins. The cause of this error is having too many static strings that don't use concatenation. If you have a mod menu installed that would likely use up most of the static strings available leaving very little for other mods.

    CrissJ0undefined 1 Reply Last reply
    0
    • JezuzLizardundefined JezuzLizard

      @Snoopy__ This mod support .d all and .w all. I don't know anything about the ammo version.

      Ghost420_undefined Offline
      Ghost420_undefined Offline
      Ghost420_
      wrote on last edited by
      #9

      JezuzLizard ho .. ok thank you very much for answering .. this is very good ..! ..

      1 Reply Last reply
      0
      • Ghost420_undefined Offline
        Ghost420_undefined Offline
        Ghost420_
        wrote on last edited by Ghost420_
        #10

        one more question .. sorry it's not your way ..
        many times the server is closed or remains open but it is impossible to join it .. that is .. it appears in the list of servers but when trying to join it remains in .."waiting for connection 1,2,3,4..."create a thread asking and a user replied that I have to start the server daily due to ram consumption... but that didn't solve it... you don't know what it could be? I'm with these scripts..

        2022-11-03 03_50_00-win8 [Corriendo] - Oracle VM VirtualBox.jpg

        and this is my "dedicated_zm.cfg " ..

        https://drive.google.com/file/d/1qvoVIzx7N_FQ6XJ_r0WJzGbnZUIREy5K/view?usp=sharing

        I have two servers running from the same folder... I mean... the "MP" server shares the same folder as the "ZM" server... could that be the problem?... I don't have space for now... that's why I don't try to run it from a separate folder..

        obviously you don't have to look at all that... if you don't want to help me, I'll understand... and I'll create a thread for this topic... I'm asking you because you seem to know...

        JezuzLizardundefined 1 Reply Last reply
        0
        • Ghost420_undefined Ghost420_

          one more question .. sorry it's not your way ..
          many times the server is closed or remains open but it is impossible to join it .. that is .. it appears in the list of servers but when trying to join it remains in .."waiting for connection 1,2,3,4..."create a thread asking and a user replied that I have to start the server daily due to ram consumption... but that didn't solve it... you don't know what it could be? I'm with these scripts..

          2022-11-03 03_50_00-win8 [Corriendo] - Oracle VM VirtualBox.jpg

          and this is my "dedicated_zm.cfg " ..

          https://drive.google.com/file/d/1qvoVIzx7N_FQ6XJ_r0WJzGbnZUIREy5K/view?usp=sharing

          I have two servers running from the same folder... I mean... the "MP" server shares the same folder as the "ZM" server... could that be the problem?... I don't have space for now... that's why I don't try to run it from a separate folder..

          obviously you don't have to look at all that... if you don't want to help me, I'll understand... and I'll create a thread for this topic... I'm asking you because you seem to know...

          JezuzLizardundefined Offline
          JezuzLizardundefined Offline
          JezuzLizard
          Plutonium Staff
          wrote on last edited by
          #11

          @Snoopy__ You didn't put the Tranzit specific script that was in zm_transit folder in the zm_transit folder in your server. Map specific scripts need to be in their map specific folder.

          1 Reply Last reply
          2
          • Ghost420_undefined Offline
            Ghost420_undefined Offline
            Ghost420_
            wrote on last edited by
            #12

            OK thank you !

            1 Reply Last reply
            0
            • JezuzLizardundefined JezuzLizard

              I decided to make my own bank mod since it's a heavily requested mod for many server owners.

              This mod uses the player's stats file instead of a database which means it requires no external dependencies nor do you need to store the data yourself. This does mean the max bank amount is 250000 but that is still a lot of points so I personally don't see it as an issue.

              The mod works on all maps including maps without a bank normally. You can access the bank via chat commands which you can find more details about at the repo: https://github.com/JezuzLizard/T6-ZM-Universal-Bank

              You can download the latest compiled release here: https://github.com/JezuzLizard/T6-ZM-Universal-Bank/releases/tag/v1.0

              If you find any bugs while using the mod please report them in this thread.

              Desempregradoundefined Offline
              Desempregradoundefined Offline
              Desempregrado
              wrote on last edited by
              #13

              JezuzLizard Gostei do seu código, ficou bem organizado.

              Vejo que você fez uma função que eu tinha feito esses dias de uma forma diferente, talvez sua função esteja mais otimizada que a minha

              Is_Numeric( variavel )
              {
                  ArrayVariante = [];
              
                  for( i = 0; i < 10; i++ )
                  {
                      ArrayVariante[ i ] = i + "";
                  }
              
                  for( i = 0; i < variavel.size; i++ )
                  {
                      if( !IsInArray( ArrayVariante, variavel[ i ] ) ) return false;
              
                  }
                  return true;
              }
              1 Reply Last reply
              0
              • JezuzLizardundefined JezuzLizard

                CrissJ0 Are you running any other mods? I did test the mod on Origins. The cause of this error is having too many static strings that don't use concatenation. If you have a mod menu installed that would likely use up most of the static strings available leaving very little for other mods.

                CrissJ0undefined Offline
                CrissJ0undefined Offline
                CrissJ0
                wrote on last edited by
                #14

                JezuzLizard said in [ZM] Universal bank for server and custom games:

                CrissJ0 Are you running any other mods? I did test the mod on Origins. The cause of this error is having too many static strings that don't use concatenation. If you have a mod menu installed that would likely use up most of the static strings available leaving very little for other mods.

                if I have one installed but in the other maps works the bank and the mod menu together....but thanks I solved it I had installed another system of bank and strangely that clashed with yours, now that I removed it and I work both as the bank and the mod menu. 😄

                1 Reply Last reply
                0
                • JezuzLizardundefined JezuzLizard

                  I decided to make my own bank mod since it's a heavily requested mod for many server owners.

                  This mod uses the player's stats file instead of a database which means it requires no external dependencies nor do you need to store the data yourself. This does mean the max bank amount is 250000 but that is still a lot of points so I personally don't see it as an issue.

                  The mod works on all maps including maps without a bank normally. You can access the bank via chat commands which you can find more details about at the repo: https://github.com/JezuzLizard/T6-ZM-Universal-Bank

                  You can download the latest compiled release here: https://github.com/JezuzLizard/T6-ZM-Universal-Bank/releases/tag/v1.0

                  If you find any bugs while using the mod please report them in this thread.

                  KagbaOnTheRunundefined Offline
                  KagbaOnTheRunundefined Offline
                  KagbaOnTheRun
                  wrote on last edited by
                  #15

                  JezuzLizard Do you have more scripts you made?

                  1 Reply Last reply
                  0
                  • HillKillerundefined Offline
                    HillKillerundefined Offline
                    HillKiller
                    wrote on last edited by
                    #16

                    Does this happen to work in bo1 as well?

                    1 Reply Last reply
                    0
                    • crystyaundefined Offline
                      crystyaundefined Offline
                      crystya
                      wrote on last edited by
                      #17

                      how to install it

                      1 Reply Last reply
                      0
                      • VYRNACH GAMINGundefined Offline
                        VYRNACH GAMINGundefined Offline
                        VYRNACH GAMING
                        wrote on last edited by
                        #18

                        does this work for anyone else? My points do not seem to persist between shutdowns of the game

                        Mr.Boogieeundefined 1 Reply Last reply
                        0
                        • Florid_Watchundefined Offline
                          Florid_Watchundefined Offline
                          Florid_Watch
                          wrote on last edited by
                          #19

                          it works, but why do i have 14 million?

                          1 Reply Last reply
                          0
                          • VYRNACH GAMINGundefined VYRNACH GAMING

                            does this work for anyone else? My points do not seem to persist between shutdowns of the game

                            Mr.Boogieeundefined Offline
                            Mr.Boogieeundefined Offline
                            Mr.Boogiee
                            wrote on last edited by
                            #20

                            VYRNACH GAMING found a fix?

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

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