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

Plutonium

mikzyundefined

mikzy

Banned
About
Posts
308
Topics
29
Groups
0
Followers
65
Following
34

Posts

Recent Best Controversial

  • [Request] Chat bank
    mikzyundefined mikzy

    Basically, you could do this really simply now that I think about it.

    In GSC, you can actually listen for chat messages if you use this server plugin: https://github.com/fedddddd/t6-gsc-utils
    (Go to Releases, click "gsc-utils.dll" to download, drag into your server's t6r/data/plugins folder)

    In this GSC example you are about to see, I show you how to get 100 free points when you type ".givemoney" into the chat. How you would go about storing a user's amount of money to withdraw and deposit is on you to figure out.

    GSC Example:

    Put this in init()

    level thread watchChatMessages();
    

    And put this something in your code:

    watchChatMessages()
    {
       level endon("end_game");
       for(;;) {
          level waittill("say", player, message);
          if (toLowerCase(message) == ".givemoney") {
             player.score += 100;
             player tell("You have been given ^2100 ^7points!");
          }
          wait 0.01;
       }
    }
    

  • Server crash how fun:)
    mikzyundefined mikzy

    do you have any scripts or plugins loaded? this could be the reason


  • How to run more than 1 GSC Script?
    mikzyundefined mikzy

    Not every script has to be _clientids.gsc. Lol. That is just a GSC file ingame already that has nothing in it, making it the best for GSC. You can replace and run multiple custom GSC files like _development_dvars, _ambient_package (or whatever), and _clientids, etc.


  • Enable aim assist for controllers?
    mikzyundefined mikzy

    heists the point of Plutonium is not to exactly create a "hack free nostalgia fest" but it's a client directly for PC players (as it is a PC client) that adds dedicated server support. Therefore, they only have support for mouse and keyboard. If you are using controller on it, sucks to be you. There is no reason for them to do all the work of adding aim assist when you could easily learn mouse and keyboard within a few (days?) or hours and be equally good in no time.


  • Custom Game mod MultiPlayer with special rules
    mikzyundefined mikzy

    MITIX looks like you have no clue what to do. let me try to sum it up for you.

    1. It looks like you want to make a custom, modded game mode and the way to do that is making a mod via GSC. to do this, you should have basic coding knowledge of GSC already (unless someone wants to help you).

    2. To find GSC files, you need a GSC Dump. To find a GSC Dump, look around the forums. There are a lot provided. You also need a GSC decompiler. I will not provide that, but a bit of google searching should give you the answer.

    3. Continuing response 2, you won't find GSC files in your Plutonium files because GSC is all contained in fastfiles. The way to get GSC files are said in response 2.

    I wish you luck doing this idea 🙂


  • Piry not downloading
    mikzyundefined mikzy

    Make sure you have Windows Defender off before download. Make sure its in a folder. Maybe something in ur internet blocking it?


  • i need cheats commands for BO2
    mikzyundefined mikzy

    Tedbone you can look here to see if any of them are commands or dvars that can be set via console: http://gmzorz.com/bo2dvars.html


  • New Server Menu Controversy
    mikzyundefined mikzy

    i see the GUI in most fortnite cheats, thats what it reminds me of lmfao


  • [Support] Making Custom GSC Scripts For You Guys
    mikzyundefined mikzy

    CxRise in sort of way, probably


  • help
    mikzyundefined mikzy

    Xerxes I do know what i'm talking about... but, I was adding onto the discussion on when the error also occurs. Maybe if you looked around just a bit harder, you would see that the thread I replied to was about the error and I talked about how it's not the origin of the issue but rather another way to reproduce the issue.


  • [IMPORTANT] Implementation of CoD: WaW Voting system in PlutoT6
    mikzyundefined mikzy

    zaid If scripting support exists when it comes out, seems like this can be done via GSC.


  • Error : client command overflow
    mikzyundefined mikzy

    Marty59 it doesnt let you instant rejoin because it doesn't actually disconnect you from server and about after 30 seconds, it eventually will


  • BO2 "Graphics" improvement
    mikzyundefined mikzy

    @XenoMars https://forum.plutonium.pw/topic/3276/does-plutonium-support-reshade?_=1612040594594


  • Controller not working on t6
    mikzyundefined mikzy

    Amethystx i dont have a ps4 controller

  • 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