Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Other Server Development
[ClipstoneZombies] Call Of Duty Laravel CMS using Livewire & Faliment for admin panel With integrated console & rcon commands to the server!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="DDDDec" data-source="post: 483823" data-attributes="member: 75952"><p>Appreciate you, if theirs any ideas you have id like to hear them so i can add them in!, I want to release a whole pack for plutonium.</p><p></p><p>Also the main reason im doing this is because IW4MADMIN dont support getting stats from zombies only multiplayer by default (pretty sure you can but you have to do it yourself which not many people will know how to do), so decided i want my own panel plus using this will use less resources overall for me IW4MADMIN and ill also be way more familiar with it.</p><p>[automerge]1731014428[/automerge]</p><p>Update towards RCON for the panel i started adding some rcon commands below is a snippet of 2 of them, will be adding troll/abuse commands and some fun commands as well as moderation commands!</p><p></p><p>[CODE]// Include Utility Base Game Scripts</p><p>#include maps/mp/_utility;</p><p>#include common_scripts/utility;</p><p></p><p>// Include Custom ClipstoneZombies2.0 Utility Scripts</p><p>#include scripts/zm/clipstonezombies2/validate;</p><p>#include scripts/zm/clipstonezombies2/error;</p><p></p><p>initRcon()</p><p>{</p><p> addCommand("giveMoneyToAllPlayers", ::giveMoneyToAllPlayers);</p><p> addCommand("makeAllDropWeapon", ::makeAllDropWeapon);</p><p>}</p><p></p><p>giveMoneyToAllPlayers(args)</p><p>{</p><p> if (validateRconCommands())</p><p> foreach(player in level.players)</p><p> player.score += int(args[1]);</p><p> player tell("You have been given $" + args[1]);</p><p>}</p><p></p><p>makeAllDropWeapon(args)</p><p>{</p><p> if (validateRconCommands())</p><p> foreach(player in level.players)</p><p> player dropItem(player getCurrentWeapon());</p><p> player tell("[^2ClipstoneZombies^7] You dropped your weapon pal");</p><p>}[/CODE]</p><p></p><p>Will upload some more videos when i have time and have more rcon commands sorted for the console</p></blockquote><p></p>
[QUOTE="DDDDec, post: 483823, member: 75952"] Appreciate you, if theirs any ideas you have id like to hear them so i can add them in!, I want to release a whole pack for plutonium. Also the main reason im doing this is because IW4MADMIN dont support getting stats from zombies only multiplayer by default (pretty sure you can but you have to do it yourself which not many people will know how to do), so decided i want my own panel plus using this will use less resources overall for me IW4MADMIN and ill also be way more familiar with it. [automerge]1731014428[/automerge] Update towards RCON for the panel i started adding some rcon commands below is a snippet of 2 of them, will be adding troll/abuse commands and some fun commands as well as moderation commands! [CODE]// Include Utility Base Game Scripts #include maps/mp/_utility; #include common_scripts/utility; // Include Custom ClipstoneZombies2.0 Utility Scripts #include scripts/zm/clipstonezombies2/validate; #include scripts/zm/clipstonezombies2/error; initRcon() { addCommand("giveMoneyToAllPlayers", ::giveMoneyToAllPlayers); addCommand("makeAllDropWeapon", ::makeAllDropWeapon); } giveMoneyToAllPlayers(args) { if (validateRconCommands()) foreach(player in level.players) player.score += int(args[1]); player tell("You have been given $" + args[1]); } makeAllDropWeapon(args) { if (validateRconCommands()) foreach(player in level.players) player dropItem(player getCurrentWeapon()); player tell("[^2ClipstoneZombies^7] You dropped your weapon pal"); }[/CODE] Will upload some more videos when i have time and have more rcon commands sorted for the console [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Other Server Development
[ClipstoneZombies] Call Of Duty Laravel CMS using Livewire & Faliment for admin panel With integrated console & rcon commands to the server!
Top