-
Posts
50 -
Joined
-
Last visited
Everything posted by InVision
-
I've only got Radio Los Santos done, but I plan to do all stations from GTA V to SA. Here's how you do it. Download San Andreas Audio Tool Kit http://www.gtagarage.com/mods/show.php?id=1186 Drag Metadata-full, Metadata-generic, saat_sfx and saat_stream to your GTA:SA Directory then go to your Local Disc © drive, and make a folder named Temp Then Open up Command Prompt and enter this- cd c:\Program Files\Rockstar Games\GTA San Andreas hit enter type this- saat_stream -e audio\streams\MH c:\temp\saat hit enter close cmd prompt now download the gta 5 radio songs and go to local disc > temp > MH and replace the files with your new ones GTA 5 Radio Songs: http://www.4shared.com/zip/gsu-Oqcl/GTA ... Creds.html Now, open up the Command Prompt And enter this- cd c:\Program Files\Rockstar Games\GTA San Andreas Hit enter Then enter this- saat_stream -i audio\streams\MH c:\temp\saat\MH\stream_import.ini audio\CONFIG\TrakLkup.dat Hit Enter Done
-
Everest-Community||50k Start||everest-community||*NEW RP *||
InVision replied to mrfr3shz911's topic in Servers
You're posting a thread about Everest-Community, but just today you were trying to apply to be a developer for Roleplay Project? Doesn't seem very community oriented in my opinion. -
It's fixed now, a window came up before starting the Server.exe asking me to allow MTA to breach the firewall on public/private networks, before hand I was just closing the window, but all I had to do was check the Public and Private networks then click allow. Solved
-
Your Server IP address doesn't seem correct. Press Start > type in cmd and double click it > type in "ipconfig" without the quotations > copy the IP address listed next to IPv4 as your Server IP for the ports.
-
I'm hosting a server via my computer, I've forwarded my ports, etc. Now, when I try to connect to the server, the whole thing just shuts down upon entering the game. I'm using windows 8.
-
In the logs it give me no errors.
-
I tried the script, but it did not work.. addEventHandler( "onClientResourceStart", resourceRoot, function() local texture = dxCreateTexture ("vehiclepoldecals128a.png") local shaderL = dxCreateShader ( "LuaShader.fx" ) dxSetShaderValue ( shaderL, "gTexture", texture ) engineApplyShaderToWorldTexture ( shaderL, "vehiclepoldecals128a") end)
-
engineApplyShaderToWorldTexture ( shaderL, "coronamoon") Coronamoon would be the file I am replacing, right?
-
Does anyone know where I can get moon shader? I'm looking to replace a few images in the vehicle.txd, I'm brand new to this type of replacing, so any code would be absolultely helpful!
-
Even as Server Side it completely destroy the script
-
Ah, thanks, I'm kind of new to scripting, experimenting until I get a final result is what I do, lawl.
-
Tried setElementVisibleTo didn't work addEventHandler("onClientVehicleExit", getRootElement(), function() local thePlayer = getPlayerFromName ( "thePlayer" ) if ( thePlayer ) then x, y, z = getElementPosition ( thePlayer ) theCheckkKpointt (name, size, x, y, z ) setElementVisibleTo ( theCheckkKpointt, getRootElement ( ), false ) setElementVisibleTo ( theCheckkKpointt, thePlayer, true ) end )
-
I tried changing the dimension, but it still set the marker back to the first xyz id addEventHandler("onClientVehicleExit", getRootElement(), function() if isElement(theCheckkKpointt) then setElementDimension (thCheckkKpointt, 1) end if isElement(TTtheBbBlip) then setElementDimension(TTtheBbBlip, 1) end end )
-
This require Bone Attachment functions.
-
Is it possible to hide an element without destroying it? I have a script that when you enter a marker in a vehicle you receive money, but when you exit the vehicle the marker get's destroyed, and you have to start again at the first marker instead of the one you last hit.
-
It's the second part of the script...
-
if getVehicleName(theVehicle) == "pizzaboy" then --> "pizzaboy" apparently I had to make it capitalized "Pizzaboy" :facepalm:
-
It's suppose to be a string, I have this script set up with other vehicles, but it just won't work with the Pizza Boy But here's the second part of the script, maybe I did something wrong on it... addEventHandler("onVehicleEnter", getRootElement(), function (thePlayer) theVehicle = getPedOccupiedVehicle(thePlayer) if getVehicleName(theVehicle) == "pizzaboy" then if getPedOccupiedVehicleSeat(thePlayer) == 0 then setElementData(thePlayer,"pizzaStop",1 ) setElementData(thePlayer,"pizzaRoute",math.random(1, 5)) thepizzaRoute = getElementData(thePlayer,"pizzaRoute") outputChatBox("Drive to the Flag Blips and drive through the Blue Markers to deliver the pizzas, and receive your pay.", thePlayer, 255, 194, 15) outputChatBox("*If you exit the vehicle, you'll have to restart the whole route over again*", thePlayer, 255, 0, 0) outputDebugString("Driving on route ".. tonumber(pizzaRoute[thepizzaRoute][0][1]) .. " towards " .. pizzaRoute[thepizzaRoute][0][2]) local name, size, x, y, z = GGgetNewDDestination(thePlayer, 1) end end end )
-
I don't believe that you can replace files that are outside of the GTA3.img, but you could use shaders.
-
addEvent("pizzaReachDestination",true) addEventHandler("pizzaReachDestination",getRootElement(), function (thePlayer) if not isPedInVehicle(thePlayer) then return end theVehicle = getPedOccupiedVehicle(thePlayer) if not getElementModel(theVehicle) == "448" then return end outputChatBox("You have delivered the pizza, and received $25", thePlayer, 0, 255, 0) exports.global:giveMoney(thePlayer, 25) if getElementData(thePlayer,"pizzaStop") == #pizzaRoute[getElementData(thePlayer,"pizzaRoute")] then setElementData(thePlayer,"pizzaStop",1) else setElementData(thePlayer,"pizzaStop",tonumber(getElementData(thePlayer,"pizzaStop"))+1) end GGgetNewDDestination(thePlayer, getElementData(thePlayer,"pizzaStop")) end ) The script is not recognizing the Pizza Boy as vehicle? maybe there's something I did wrong?
-
https://community.multitheftauto.com/index.php?oset=2600 index.php?oset=2600 index.php?oset=XXXX 2600 2600 Resembles page 26 Edit the last digits in the URL So if you wanted to view page 24, you'd edit the last digits to 2400 If you want to view page 8, you'd edit the last digits to 800 Saves a lot of time, because hitting more a few times is time consuming!
-
Hello I'm try to convert this script to draw a number, instead of a gui lable... How do I do this? tried multiple times but just got so frustrated... It's a community script, so it's free to edit.
-
Wasn't a leak script btw, it was a script made from scratch, xoxo.
-
[Fixed] I guess I answered my own question. In order to run MTA:SA Server without having to run as an administrator, you MUST install both Client and Server Side Options.
-
Now I've got a new set of problems when I install both Client and Server side options. But my 22003, 22005, and 22126 ports are open. ED: *facepalm*, I had a second server running at the same time.... I'm going to transfer the files to the new install, and I'll update the results.
