[ClipstoneZombies] Call Of Duty Laravel CMS using Livewire & Faliment for admin panel With integrated console & rcon commands to the server!

DDDDec

Tongue Boxing Champion 2023
May 30, 2017
441
275
A new cms for call of duty plutonium servers built with laravel (v11) using livewire (v3) and faliment (v3)admin packages!

Might release it once its finished with a different frontend to my own!

Features:
1. Automatic payments for selling ranks and other items from your store (only supports stripe right now but will support paypal later on)
2. Send RCON commands to either one server or all
3. Admin panel with rank system
4. User login, register and email verification
5. Newspaper system (will be adding comments in at some point)
6. Server status page and uptime
7. Although IW4MADMIN is a great admin panel for cod servers, the banning isnt instant like it will be for mine, hackers can spam messages for bad links even when banned using iw4madmin, for mine youll be kicked not a mili second later after your connection giving no time for them to spam anything!

What can you do with rcon?, You could setup timers where if per say you want to give something to everyone when you hit 50+ players online you could do something like what minecraft drop party does but in this case give the players a random sum of money and so much more (if i do this myself the release will come packaged with a gsc to make it possible)!

I plan on adding a bunch of gambling mini games to the cms like roulette, rock paper scissors, 21, poker!

If i do release it, plenty of GSC scripts for extra console commands will come with it maybe just a few examples of adding custom console commands you can use with rcon!

Any feedback is appreciated :)

Video of the cms and rcon/server:
 

boz

don daddy
Mar 23, 2021
206
100
mmmm so clean, so smooth. Love to see how much work you’re putting into the cod community.
 

DDDDec

Tongue Boxing Champion 2023
May 30, 2017
441
275
mmmm so clean, so smooth. Love to see how much work you’re putting into the cod community.
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.
Post automatically merged:

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");
}

Will upload some more videos when i have time and have more rcon commands sorted for the console
 
Last edited:

Users who are viewing this thread

Top