Recent posts

#71
Support / Re: A host is unable to bring ...
Last post by DewsmokeYT - Aug 19, 2025, 02:14 AM
did you not open your ports? it has to be done 100% right or will fail
#72
Script Showroom / Re: Ban System
Last post by DewsmokeYT - Aug 19, 2025, 02:12 AM
how can these shit scripters who steal attack him for sharing, probably didn't drag and drop like you hoped, thanks for sharing!
#73
Scripting and Server Management / bad word script
Last post by DewsmokeYT - Aug 18, 2025, 10:51 PM
just something for yah to help with bad mouths

// ===================================== C H A T   M U T E   D E M O =====================================

// Minimal standalone example of a word-mute system.
// Add your muted words in the array below where indicated.

// Tracks muted players for the current session (optional; used here only to block repeated attempts)
local mutedPlayers = {};      // { playerID = true }

// List of banned/muted words. Case-insensitive match.
// Add here: "word1", "word2", "word3"
local bannedWords = [
    // add here
];

// Helper to check if a message contains any banned word (case-insensitive, simple substring)
function ContainsBannedWord(message)
{
   if(!message) return false;
   local lower = message.tolower();
   foreach(w in bannedWords){
      if(typeof w == "string" && w != "" && lower.find(w.tolower()) != null){
         return true;
      }
   }
   return false;
}

// Optional: allow adding words dynamically at runtime via script API
function AddMutedWord(word)
{
   if(!word || typeof word != "string") return false;
   local lw = word.tolower();
   foreach(w in bannedWords){ if(w.tolower() == lw) return false; }
   bannedWords.append(word);
   return true;
}

function onScriptLoad()
{
   print("[MUTE-DEMO] Chat mute system loaded. Add words in bannedWords[] (mute_demo.nut).");
}

function onPlayerChat(player, text)
{
   // Block if message contains a banned word
   if(ContainsBannedWord(text))
   {
      mutedPlayers[player.ID] <- true; // session flag; adjust as needed
      MessagePlayer("[#FF0000]Your message was blocked (contains a muted word).", player);
      return 0; // prevent message from being sent
   }

   // If you want to block all chat from previously flagged players, uncomment below
   // if(mutedPlayers.rawin(player.ID)) return 0;

   return 1; // allow message
}

#74
General Discussion / VC:MP keeps the whole world al...
Last post by DewsmokeYT - Aug 18, 2025, 06:29 AM
VC:MP I love it so,From Canada's cold towhere kangaroos go.
Players log in from Pakistan's land,
To race, to duel, to take a stand.
No matter where you're from, we all arrive,
VC:MP keeps the whole world alive! some how fit this in less then 20
#75
Off-Topic General / VC:MP I love it so
Last post by DewsmokeYT - Aug 18, 2025, 06:16 AM
VC:MP I love it so,
From Canada's cold to where kangaroos go.
Players log in from Pakistan's land,
To race, to duel, to take a stand.
No matter where you're from, we all arrive,
VC:MP keeps the whole world alive!
#76
Servers / MAFIA RP
Last post by DewsmokeYT - Aug 18, 2025, 03:41 AM
there a few ways you can play you can join the apply server 142.161.38.169:8192
then after you been accepted you can join 142.161.38.169:8193
(please note this ip may change )


Trailer
in the desc has the discord and etc, you can message me here too
https://www.youtube.com/watch?v=Afomcs265Mw


[LAUNCH ANNOUNCEMENT] Welcome to DewCity 🚀

Hey everyone,

I'm excited to announce the launch of DewCity – the server that truly has it all.

👉 This isn't your average VC:MP server. We've packed in everything from:

Bank robberies 💰

FBI roleplay 🕵�

Dexter Morgan–style disposal missions 🩸

Cargo jobs 🚢

70+ vehicles 🚗
...and a whole lot more.

⚠️ Important: DewCity is a private server. Recently, my family has been deeply affected by doxing – from not being able to use our own internet at times, to having to make many of our things private. Because of this, I have to be very careful about who joins. If you'd like to play, PM me directly and I'll provide you with the server password. Players who are accepted will also receive all server files and access details.

📡 Note: Our server IP changes day to day, so the best way to stay connected is to add DewCity to your Favorites once you're accepted. That way you'll always see when the server is up and live.

🚫 Rule: Anyone who shares the password without permission will be permanently banned. No exceptions.

📺 While we don't have a Discord yet, you can follow updates and live events through our YouTube channel. We're planning to host weekly events where the city really comes alive.

This is about building a strong, fun, and respectful community. If you're serious about roleplay, action, and creativity in VC:MP, then MRP is where you want to be.

See you in the city,
– Dew
#77
Videos & Screenshots / Outnumbered Not Outskilled - C...
Last post by herqules - Aug 16, 2025, 08:45 PM
#78
General Discussion / Re: Yet another VCMP Browser
Last post by DewsmokeYT - Aug 16, 2025, 06:48 AM
trying this now
#79
General Discussion / Re: MEGAMIND'S VCMP BROWSER
Last post by habi2 - Aug 10, 2025, 08:08 PM
okay.
#80
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