Recent posts

#91
General Discussion / Re: MEGAMIND'S VCMP BROWSER
Last post by MEGAMIND - Aug 10, 2025, 03:44 PM
Quote from: habi2 on Aug 10, 2025, 12:38 PM1.6.7

besides, one key (=) in keyboard stuck when browser was open.
Browser with most of my services are offline... thats why you are getting that status..

Will revive the browser in near future..! also the key isnt stuck its changeable..! its used for vocie input api in which u can talk to your freinds via voice.. like voip same as samp
#92
General Discussion / Re: MEGAMIND'S VCMP BROWSER
Last post by habi2 - Aug 10, 2025, 12:38 PM
1.6.7

besides, one key (=) in keyboard stuck when browser was open.
#93
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 !
#94
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
#95
Videos & Screenshots / KOTH Ruled by HerKulano | VCMP
Last post by herqules - Aug 06, 2025, 10:49 PM
#96
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
#97
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.
#98
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
    }
#99
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
#100
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 ,