Go to cmd and just type plutonium.exe -timeout 600
mikzy
Posts
-
error message -
[support] windows 7 pluto t6They have a very outdated version of windows.
-
question on making a simple gsc code for "reserved slots"not really but okay and besides i think i found a fix for the way imma do it now
-
[Support] Quick $5 bounty to anyone who can help and makes working code for this.Ill explain as best as i can. 1 reserved slot through IW4MAdmin, makes server 17/18. Only trusted/vip players can join through reserved slot, it fills up that space but onplayerconnect, it kicks someone with the "unverified" status and lets the "vip" status join. The amount of players should be back to 17/18 at the end of the process. GSC.
-
[Support] Custom TexturesSorry to break it to you but currently not possible and any way of doing it is probably modifying the exe and game files which can be a bannable offense as far as i know.
-
question on making a simple gsc code for "reserved slots"Cahz thats what i was thinking
-
Comment pouvez-vous changer le répertoire du jeu?La version actuelle du lanceur a un bug où vous ne pouvez pas changer l'emplacement. Voici comment l'effacer manuellement:
Assurez-vous que le lanceur est fermé!
Presse Windows Key + R
Entrer %localappdata% dans la boîte qui est apparue et cliquez sur OK
Dans le dossier qui s'est ouvert, recherchez le dossier Plutonium
Ouvrez-le et supprimez config.json
Ouvrez le lanceur, connectez-vous et définissez à nouveau l'emplacement du dossier -
question on making a simple gsc code for "reserved slots"So, for example, the server is full and has 18 players in. Lets say we have it so if you VIP status is found on player joining, it does kick a random player and lets you join. Is that how it would work?
-
for custom games on black ops 2 how do i set up the portsyour internet provider will tell you how to port forward
-
question on making a simple gsc code for "reserved slots"I could easily make one i think and i have a basic idea but tried and it didnt work. Does anyone else have a idea on this?
Example: 17 players (max but you can still join) and when you join, it finds you have VIP status and after that, it kicks a random player that doesnt have VIP status -
[Support] VIP Dvar system-solved
-
[Support] Can you set DVAR so players have VIP when map changes?Cahz and this is a DVAR VIP system meaning it stores it as a DVAR until server restarts and works through map rotations?
-
[Support] VIP Dvar systeminit() { level.vipXuids = []; // You can predefine XUIDs in your script like this level.vipXuids[0] = "predefined_xuid_here"; level.vipXuids[1] = "another_one"; level.vipXuids[2] = "etc, etc."; level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill("connected", player); if(isInArray(level.vipXuids, player getXUID())) { // If the player XUID is in the predefined array, give them VIP status and set their VIP dvar player.status = "VIP++"; // Give them VIP status for the script self setPlayerVipDvar(true); // Set their VIP status DVAR } else if(player getPlayerDvar()) { // If the player does not have their XUID in the predefined array but has their VIP dvar set player.status = "VIP++"; // Give them VIP status for the script self setPlayerVipDvar(true); // Set their VIP status DVAR } /* You could combine the two conditions using an || operator, but this should be a little easier to understand for beginners. */ player thread onPlayerSpawned(); } } onPlayerSpawned() { self endon("disconnect"); level endon("game_ended"); for(;;) { self waittill("spawned_player"); if(self.status == "VIP++") { // If player has VIP status // Do VIP things } } } setPlayerVipDvar(value) { setPlayerDvar(self, "vip_status", value); } getPlayerVipDvar() { return getPlayerDvar(self, "vip_status"); } setPlayerDvar(player, dvar, value) { dvar = player getXUID() + "_" + dvar; setDvar(dvar, value); } getPlayerDvar(player, dvar) { dvar = player getXUID() + "_" + dvar; return getDvar(dvar); }tried doing this on my server and it somewhat works but for some reason, on spawn, it gives everyone VIP, even if they arent in the defined array of XUIDs. can anyone help?
-
[Support] Can you set DVAR so players have VIP when map changes?ImVeryTwisted did this ever work? sorry for bumping. need this really bad and need results.
TheHiddenHour did you mean a RESET like completely resetting the server files or RESTART? -
onplayercommand gsc codeMatrix i’ve asked you questions before but not specifically about your DLL. i just had a theory that a DLL was used to make that work. Some kid was leaking ur shit in a discord server
-
onplayercommand gsc codeonCustomCommand() { self endon( "disconnect" ); for(;;) { self waittill( "custom_cmd", command ); if( command == "cmd_streaks" ) { maps/mp/gametypes/_globallogic_score::_setplayermomentum(player,9999); } }theoretically, would this work or not (like shake servers)? or would a DLL have to be used (which im not gonna do as that is a bannable offense but)
-
[Support] Gsc script helpFarzad did you ever figure out how to learn basic gsc code that even my grandma could learn?
-
[Support] Can you set DVAR so players have VIP when map changes?TheHiddenHour this looks really good! is this something that works without server restart? (like you could do this ingame and when the next map rotates, it applies)
-
Time for another progress update.I’m excited for these changes!