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

Plutonium

  1. Home
  2. MW3 Server Hosting Support
  3. Please I need help

Please I need help

Scheduled Pinned Locked Moved MW3 Server Hosting Support
17 Posts 3 Posters 555 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.
  • Resxtundefined Offline
    Resxtundefined Offline
    Resxt
    Plutonium Staff
    wrote on last edited by
    #8

    0c5d3897-4d0c-4fc4-bc15-a14ca2819d70-image.png

    Yosmanyundefined 1 Reply Last reply
    0
    • Resxtundefined Resxt

      0c5d3897-4d0c-4fc4-bc15-a14ca2819d70-image.png

      Yosmanyundefined Offline
      Yosmanyundefined Offline
      Yosmany
      wrote on last edited by
      #9

      Resxt said in Please I need help:

      0c5d3897-4d0c-4fc4-bc15-a14ca2819d70-image.png

      Excuse me again, but there is no dll in that tablet, if you have it, could you send it to me here?

      Resxtundefined 1 Reply Last reply
      0
      • Yosmanyundefined Yosmany

        Resxt said in Please I need help:

        0c5d3897-4d0c-4fc4-bc15-a14ca2819d70-image.png

        Excuse me again, but there is no dll in that tablet, if you have it, could you send it to me here?

        Resxtundefined Offline
        Resxtundefined Offline
        Resxt
        Plutonium Staff
        wrote on last edited by
        #10

        Yosmany https://github.com/diamante0018/DisablePlutoChat/releases

        Yosmanyundefined 1 Reply Last reply
        0
        • Resxtundefined Resxt

          Yosmany https://github.com/diamante0018/DisablePlutoChat/releases

          Yosmanyundefined Offline
          Yosmanyundefined Offline
          Yosmany
          wrote on last edited by
          #11

          Resxt said in Please I need help:

          Yosmany https://github.com/diamante0018/DisablePlutoChat/releases

          Sorry again, that dll didn't work for me, could you help me with some GSC that can be used to remove the chat?

          Kalitosundefined 1 Reply Last reply
          0
          • Yosmanyundefined Yosmany

            Resxt said in Please I need help:

            Yosmany https://github.com/diamante0018/DisablePlutoChat/releases

            Sorry again, that dll didn't work for me, could you help me with some GSC that can be used to remove the chat?

            Kalitosundefined Offline
            Kalitosundefined Offline
            Kalitos
            wrote on last edited by Kalitos
            #12

            Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

            Yosmanyundefined 1 Reply Last reply
            1
            • Kalitosundefined Kalitos

              Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

              Yosmanyundefined Offline
              Yosmanyundefined Offline
              Yosmany
              wrote on last edited by
              #13

              Kalitos said in Please I need help:

              Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

              Thanks for your attention, the dll worked for me

              Yosmanyundefined 1 Reply Last reply
              1
              • Yosmanyundefined Yosmany

                Kalitos said in Please I need help:

                Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

                Thanks for your attention, the dll worked for me

                Yosmanyundefined Offline
                Yosmanyundefined Offline
                Yosmany
                wrote on last edited by
                #14

                Yosmany said in Please I need help:

                Kalitos said in Please I need help:

                Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

                Thanks for your attention, the dll worked for me

                good again and excuse me again, could you help me also remove the chat from the BO2 rooms

                Kalitosundefined 1 Reply Last reply
                0
                • Yosmanyundefined Yosmany

                  Yosmany said in Please I need help:

                  Kalitos said in Please I need help:

                  Yosmany You need to copy the dll into the "%localappdata%/Plutonium/storage/iw5/plugins/" folder on your server, then in your cfg file set "sv_enableGameChat 0", then reboot your server, if the dll loads correctly, chat should not be available on your server.

                  Thanks for your attention, the dll worked for me

                  good again and excuse me again, could you help me also remove the chat from the BO2 rooms

                  Kalitosundefined Offline
                  Kalitosundefined Offline
                  Kalitos
                  wrote on last edited by Kalitos
                  #15

                  Yosmany You need to copy the dll to "%localappdata%/Plutonium/storage/t6/plugins/" folder on your server, then copy this code to a file and save it as muteplayers.gsc and copy the file to "%localappdata%/Plutonium/ storage/t6/scripts/mp", then restart your server, if the dll loads correctly, the chat should no longer be available.

                  init()
                  {
                       onPlayerSay(::callbackPlayerSay);
                  }
                  
                  callbackPlayerSay(text, mode)
                  {
                      // mode == 0 -> all
                      // mode == 1 -> team
                      // self -> player that sent the message
                      
                      
                      // returning `false` will hide the message, anything else will not
                  
                      self tell("You are not allowed to type in the chat");
                      return false;
                      
                  }
                  
                  Yosmanyundefined 1 Reply Last reply
                  0
                  • Kalitosundefined Kalitos

                    Yosmany You need to copy the dll to "%localappdata%/Plutonium/storage/t6/plugins/" folder on your server, then copy this code to a file and save it as muteplayers.gsc and copy the file to "%localappdata%/Plutonium/ storage/t6/scripts/mp", then restart your server, if the dll loads correctly, the chat should no longer be available.

                    init()
                    {
                         onPlayerSay(::callbackPlayerSay);
                    }
                    
                    callbackPlayerSay(text, mode)
                    {
                        // mode == 0 -> all
                        // mode == 1 -> team
                        // self -> player that sent the message
                        
                        
                        // returning `false` will hide the message, anything else will not
                    
                        self tell("You are not allowed to type in the chat");
                        return false;
                        
                    }
                    
                    Yosmanyundefined Offline
                    Yosmanyundefined Offline
                    Yosmany
                    wrote on last edited by
                    #16

                    Kalitos said in Please I need help:

                    Yosmany You need to copy the dll to "%localappdata%/Plutonium/storage/t6/plugins/" folder on your server, then copy this code to a file and save it as muteplayers.gsc and copy the file to "%localappdata%/Plutonium/ storage/t6/scripts/mp", then restart your server, if the dll loads correctly, the chat should no longer be available.

                    init()
                    {
                         onPlayerSay(::callbackPlayerSay);
                    }
                    
                    callbackPlayerSay(text, mode)
                    {
                        // mode == 0 -> all
                        // mode == 1 -> team
                        // self -> player that sent the message
                        
                        
                        // returning `false` will hide the message, anything else will not
                    
                        self tell("You are not allowed to type in the chat");
                        return false;
                        
                    }
                    

                    Good, look when I put the dll you told me in the address you gave me, you don't raise the server for me

                    Kalitosundefined 1 Reply Last reply
                    0
                    • Yosmanyundefined Yosmany

                      Kalitos said in Please I need help:

                      Yosmany You need to copy the dll to "%localappdata%/Plutonium/storage/t6/plugins/" folder on your server, then copy this code to a file and save it as muteplayers.gsc and copy the file to "%localappdata%/Plutonium/ storage/t6/scripts/mp", then restart your server, if the dll loads correctly, the chat should no longer be available.

                      init()
                      {
                           onPlayerSay(::callbackPlayerSay);
                      }
                      
                      callbackPlayerSay(text, mode)
                      {
                          // mode == 0 -> all
                          // mode == 1 -> team
                          // self -> player that sent the message
                          
                          
                          // returning `false` will hide the message, anything else will not
                      
                          self tell("You are not allowed to type in the chat");
                          return false;
                          
                      }
                      

                      Good, look when I put the dll you told me in the address you gave me, you don't raise the server for me

                      Kalitosundefined Offline
                      Kalitosundefined Offline
                      Kalitos
                      wrote on last edited by
                      #17

                      Yosmany does not start the server? What error do you get in the console? a picture would help

                      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