MTA Community Link:
https://community.multitheftauto.com/ind ... s&id=11136
*Please test it before you give a rate or feedback.
______________________________________________________
Hello there
This script was origanly made for Arab's Turbo server but since that the server is no longer active I decided to release it to public but it will be compiled for now to save author rights and maybe later I may upload the uncomplied verison of this script. VIP system was a premium feature on my server ( 2.5 USD for 7 days of use ) and of course I made hundreds of dollars from this script but after a while I couldn't find time to mange a server while I am studying at the university so I decided to close the server and now I am releasing the scripts that I have made to public so that people can get benfit of them. Now let's have some talk about the script, The script was used for a freeroam server and it offers a great designed gui panel with some great features as you see below in the pictures.
Features:
_________________
[#] User friendly GUI panel
[#] Cool and simple GUI design
[#] Ability to set the player stats to maximum.
[#] Ability to set the player health to 100%.
[#] Ability to set the player armor to 100%.
[#] Ability to change the weather. ( Client Side )
[#] Ability to change the time. ( Client Side )
[#] Ability to change the player fighting style.
[#] Ability to spawn private vehicle ( Damage proof ) that can only be used by it's owner and if anyone try to enter it while it's locked he will get a message and of course there are some cool additions for the private vehicle like random colors, attaching arrow on the top of it, attaching smoke to it ( smoke will only work at high speed 120+ ), adding nitros upgrade and finally you can control the lights, engine and the lock of the car. ( The vehicle will be destroyed automatically on player logout )
Pictures:
_________________
Main Window [ Active ]
Main Window [ Not Active ]
Output messages for VIP vehicles
To open the panel press 'Z'
Note: you must be in ACL group named 'VIP" to have access to the panel.
** For Arabic version please download V1.0.
If you have any question or you want to suggest/report anything please post a comment.
Enjoy!
Please delete this script I was trying to upload a new verison of my script and instead I uploaded a new one
https://community.multitheftauto.com/ind ... s&id=11140
DONE
Hello everyone
I was trying to upload a new version of my script to the community and by mistake I uploaded it as a new script and i tried to delete it but I couldn't find an option to do that so do anyone here have an idea how to delete it from the community?
Hello,
I want to make a command that's add a user into a group named X and after X days the user will be removed from the group so for example let's say the command is X Player 7 then the player will be added to the group and get removed from it after 7 days. Ok so I know how to get real time but how can I make it remove the user after X days?
I know how to set account data but I don't know what exactly I should set as account data.
So can anyone help me to solve this problem?
I have error in line 13 saying that expected table got nil while I do have a table named Vehicle1
and I checked it using outputChatBox so can anyone help me to solve it?
addEventHandler("onPlayerChat",root,
function (msg,type)
if ( type == 0 and msg == "test" ) then
if ( isStarted == true ) and ( readyPlayers < maxPlayers ) and not isPedInVehicle(source) and not getElementData(source, "inMissionD" ) == true then
cancelEvent()
readyPlayers = ( readyPlayers + 1 )
VarName = ("vehicle"..readyPlayers)
setElementData(source, "inMissionD", true)
VarX = ("Vehicles"..vMap)
outputChatBox(VarX)
local x, y, z, rx, ry, rz = unpack ( VarX [ readyPlayers ] )
VarName = createVehicle ( vID, x, y, z, rx, ry, rz )
table.insert(DVeh,VarName)
warpPedIntoVehicle ( source, VarName)
setElementData( source, "isBlocked", true, true)
toStart()
return
end
end
end
)