Recent posts

#81
Server & Plugin Updates / Re: Announce Plugin Update Rel...
Last post by habi2 - Aug 09, 2025, 08:43 PM

( only source code link is seen )

If anybody is have problem like above, then use:
https://bitbucket.org/stormeus/0.4-announce/downloads/announce04rel64.so

Replace .so by .dll to get windows plugins !
#82
Support / Re: A host is unable to bring ...
Last post by 2b2ttianxiu - Aug 08, 2025, 04:50 PM
Quote from: Adrenaline on Aug 02, 2025, 05:47 AMThanks for your responses. I've requested a refund. Can you recommend a host to host my server?


@habi2 @MEGAMIND @Eva @2b2ttianxiu
If u in china, u can use qq add friend to me
794609509
#83
Videos & Screenshots / KOTH Ruled by HerKulano | VCMP
Last post by herqules - Aug 06, 2025, 10:49 PM
#84
Support / Re: A host is unable to bring ...
Last post by MEGAMIND - Aug 03, 2025, 07:56 AM
https://rtclan.vcmp.net/index.php?topic=290 <- try this currently the only one providing.. as mine is offline from few years now
#85
Support / Re: A host is unable to bring ...
Last post by habi2 - Aug 03, 2025, 06:38 AM
I recommend buying a cheap linux server (cost: INR 420 ).  You will get it operating in minutes. Put your files and run
./mpsvrrel64 -allow-server-runas-root
Also you have to chmod 777 mpsvrrel64 before it.
#86
Here's a countdown timer function in VC:MP Squirrel that sends a message every second to all players until it reaches zero, then sends a final alert to each player. It uses NewTimer to call itself every second, and loops through all connected players with GetMaxPlayers and FindPlayer. To start it, just call EbolaCountdown(10);. Here's the code:


function EbolaCountdown(count) {
    if(count > 0) {
        Message("[#FF0000]EBOLA OUTBREAK INCOMING: " + count + " SECONDS");
        NewTimer("EbolaCountdown", 1000, 1, count - 1);
    } else {
        local players = [];
        for(local i = 0; i < GetMaxPlayers(); i++) {
            local player = FindPlayer(i);
            if(player) players.push(player);
        }
        foreach(local player in players) {
            SendPlayerMessage(player, "[#FF0000]Ebola outbreak has started!");
        }
    }
}



also snippet of how ebola might work
        if(players.len() > 0) {
            // Randomly select a victim
            local victim = players[rand() % players.len()];
            victim.Health = 0.0;
           
            // Find the buyer to send them a message
            local buyer = FindPlayer(ebolaBuyer);
            if(buyer) {
                MessagePlayer("[#00FF00]Your Ebola outbreak has killed " + victim.Name + "!", buyer);
            }
           
            Message("[#FF0000]EBOLA OUTBREAK: " + victim.Name + " has been infected and died!");
        }
        ebolaBuyer = null; // Reset the buyer
    }
#87
Script Showroom / Re: [ #D~ Tools ] Map Editor
Last post by Adrenaline - Aug 02, 2025, 02:53 PM
Quote from: DizzasTeR on Apr 21, 2021, 05:00 AMThere used to be a problem about saving maps (according to the users, I've never encountered it) which I attempted a fix in v1.3.3 mentioned in the CRITICAL section of the changelog. Before that the autosave was disabled but then I forgot to re-enable it, so it should be fine to use, it will be re-enabled in later versions.
can you upload new link? thx
#88
Script Showroom / Re: [FilterScript] Country Det...
Last post by KazamaOp - Aug 02, 2025, 01:22 PM
Thanks bro its fixed no unknown country no bugs ,
#89
Support / Re: A host is unable to bring ...
Last post by Adrenaline - Aug 02, 2025, 05:47 AM
Thanks for your responses. I've requested a refund. Can you recommend a host to host my server?


@habi2 @MEGAMIND @Eva @2b2ttianxiu
#90
Support / Re: A host is unable to bring ...
Last post by habi2 - Jul 30, 2025, 09:06 AM
@Adrenaline How did you transferred script files to server?

I don't know how citadel servers work. But usually you put script files via ssh(sftp). Then start server by commandline.

Have you done any of these things?

Besides,  by default server will not appear in masterlist. You need to edit server.cfg or create one for server to appear in masterlist.
 
Also how you start server?

Please provide more screenshot of interface you have.