Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Xmair

#1
Support / Re: A new menu textures
Jul 18, 2026, 08:31 PM
The radar disc is already customizable. Simply place your custom radar disc here:

store/maps/radar/radardisc.png
The maps are customizable as well:

* Main menu map:
 
store/maps/radar/region00.png - region08.png
* Radar map:
 
store/maps/radar/section00.png - section63.png
As for the custom weapon icons, you can use custom weapons with the default weapon XML files (available in the MVL mod examples):
https://www.gtagarage.com/mods/show.php?id=16467

Get them from this path in the MVL archive:
mvl/help/samplewepxmls
and finally you can just put the weapon icon you want in the custom weapon archive.

The pause screen is not customizable.

More information here:
https://forum.vc-mp.org/index.php?topic=8.0
#2
Quote from: Adrenaline on Nov 27, 2025, 06:51 PMMy question is, has there been a way to encrypt the store on the servers?
You can compile your client side scripts but that's all there is to it.

Quote from: (vG)DesTroYeR^ on Nov 30, 2025, 02:49 PM
Quote from: Adrenaline on Nov 27, 2025, 06:51 PMMy question is, has there been a way to encrypt the store on the servers?

i guess u need to turn your all script into plugins .so or .dll based upon operating system.
thats a smart idea btw, but each time you need to modify your script, you have to re-crypt it
The VC:MP client only runs Squirrel so that is not possible.
#3
You could use Script::ScriptProcess
#5
I believe Mairee already removed that command as soon as all of this drama started happening. Furthermore I don't recall mairee banning you. I haven't been brought any proof about any statf member harassing you and I apologize for not acting on anything becasue honestly I don't check the server at all.

PS: Xmair is my old name, my new nick is mairee.
#6
Open VC in Single Player and change the resolution to 32 bit mode.
#7
Thank you AdTec, these are great features. However, are there any workarounds to hide _mem.xml files for HTTP downloads?
#8
Servers / Re: [0.4] Vice City Cops & Robbers
May 18, 2024, 02:32 PM
The server IP has been changed to 81.17.101.189:8192
#9
Script Showroom / Re: Dipeos command
Mar 09, 2024, 06:56 PM
Quote from: PSL on Mar 09, 2024, 08:11 AMThe following code may help you
DiePos<-{}; //Create a table where you can store coordinates
function onPlayerSpawn(player)
{
if(DiePos.rawin(player.ID)) //If an ID exists in the table
    {
        player.Pos=DiePos.rawget(player.ID); //Restores the player to death point
        DiePos.rawdelete(player.ID); //Delete coordinates after recovery
    }
}
function onPlayerDeath(player,reason)
{
DiePos.rawset(player.ID,player.Pos); //After the player dies, the ID is used as the search object, and the death coordinates are stored in the table
}

You should also remove the player data once the player disconnects.
function onPlayerPart(player, reason) {
    if (DiePos.rawin(player.ID))
        DiePos.rawdelete(player.ID);
}
#10
General Discussion / Re: Free 90 days VPS
Sep 12, 2023, 05:46 AM
Quote from: vitovc on Sep 11, 2023, 12:40 PMin my point of view clouds are dangerous in terms of unexpected bills, especially if you are using credit card. free trial is a bait
Agreed. Cloud is the biggest scam lol. There are so many hidden bills
#11
Replace
!player.Vehicle
with
!vehicle.Driver
#12
In sqmod.ini under [Scripts]:
Execute=path/to/file.nut
# OR
Compile=path/to/file.nut

Also be advised, if you are trying to use both the official plugin and SqMod in one server, it is not possible. You have to stick with one.
#13
You have a typo in your code. It is supposed to be DisconnectSQL, not DiscconectSQL
#14
Quote from: habi on Jul 11, 2023, 04:35 AMyou give it by adding ammo to current ammo:
player.SetWeapon(13, 10 + player.GetAmmoAtSlot(2));
For rocket, slot is 7.
Better version:
player.GiveWeapon(13, 10);
#15
Quote from: Nihongo^ on Jun 27, 2023, 08:30 AMThank you so much xmair for giving me such an amazing idea

just one more thing, how do now i select different columns in a different table of the same person?

Like picking IP from Accounts and picking UID from Alias table

Thank you
Look into JOIN queries