
HeArTBeaT
Members-
Posts
60 -
Joined
-
Last visited
Everything posted by HeArTBeaT
-
I dont think its a lie, Gamestop , the company where you could Pre-Order except rockstar wharehouse , said it. Now I dont think they can afford to lie about something like this.
-
Hey guys As you found (some of you) out on 22-10-2013 gta 5 will be released for PC. Thats why I want to ask, will there be a mta editor for GTA 5 as well>? Because that would be kick-ass!
-
Hey I kept trying to run a script I dowloaded so I can learn to script with it. I didnt modify that script at all but I cant open it. now I placed that script in resources (where my maps are) and tried to run it with mta server (start ) and it says resource not found. Do I need to place that script somewhere else?
-
Norton sucks , use avg or karpesky
-
well my problem is fixed now thanks btw anybody got a tutorial , because I keep getting "lost"
-
hmm I did that and it still wont work
-
well I did as you guys said: and made map meta like this : still cant open it with the script. event tried moving script folder inside map folder.
-
I did all that validator found no errors (deleted search map part) and added 1. but it says it failed to find the link to fallout script mind if I send these files to you ? maybe you can find a solution if you see them first hand.
-
Hi all of a sudden I get a nasty error. I start the editor than windows starts looking for solution because the program stoped running (but i can still open scripts and use it, it doesnt freeze but closes when windows finishes scaning for solutions) and in its install folder I found a error text document that had this in it Length cannot be less than zero. Parameter name: length please tell me how to fix it. Oh and any tutorial on how to use it please? P.S I tried to turn on DEP too but it wont allow me.
-
you mean meta file? but it says xml type.... look right part of the screen
-
still not working. Says resource not found. I edited the Meta (I made a typing mistake and named it mta btw) with notepad but its in .xml format.
-
EDIT : sorry double post , slow loading.
-
well it opens my map now , so thanks so far , but it still wont load scripts , it says resource not found. look at my meta files tell me if I did something wrong (also look at pics) <meta> <info author="HeArTBeaT" type="server" name="Fallout San Andreas" description="multi mode wasteland roleplay" /> <script src="client.lua" type="client"/> <map src="FalloutLosSantos.map" type="map" /> <map dimension="0" src="FalloutLosSantos.map"/> <file src="images/info.png" /> <file src="images/language/eng.png" /> <file src="images/language/ger.png" /> </meta> And this is the map meta <meta> <info type="map" name="FalloutLosSantos" author="HeArTBeaT[TBT]" version="1.0.0" description="Team Death Match , Teritory war , Capture The Flag"></info> <map src="FalloutLosSantos.map" dimension="0"></map> <settings> <setting name="#minplayers" value="[ 0 ]"></setting> <setting name="#maxplayers" value="[ 128 ]"></setting> <setting name="#gravity" value="[ 0.008000 ]"></setting> <setting name="#weather" value="[ 0 ]"></setting> <setting name="#time" value="11:0"></setting> <setting name="#locked_time" value="[ true ]"></setting> <setting name="#waveheight" value="[ 0 ]"></setting> <setting name="#gamespeed" value="[ 1 ]"></setting> </settings> <script src="mapEditorScriptingExtension_s.lua"></script> </meta> and these pics to see the files: from script From map when I use start falloutlossantos to open the map it works without problems now. but when I try to use start falloutscript it says resource could not be found. any solutions please?
-
well I have the scripts the map , included the scripts and map in meta , but when I try to start it it says resource not found.
-
Ok I got a old TDM script from someone. I posted it , can you tell me what I need to modify to change team names , spawn locations and skins? This is client not server I modified it a bit (as much as I knew) fadeCamera(true,5) setCameraMatrix( -1455.2576904297, 700, 95 ,-1527.845703125, 691.43920898438, 111) showPlayerHudComponent ( "all", false ) local function teamauswahleng() destroyElement(flagbox) Teambox = guiCreateWindow(0.3766,0.3417,0.2539,0.1406,"choose a Team",true) guiWindowSetSizable(Teambox,false) teamabtn = guiCreateButton(15,33,100,82,"test",false,Teambox) teambbtn = guiCreateButton(210,35,100,82,"Caesar's Legion",false,Teambox) showCursor(true) addEventHandler("onClientGUIClick", teamabtn, function() destroyElement(Teambox) showCursor(false) fadeCamera(false,5) setTimer(function() showPlayerHudComponent ( "all", true ) showPlayerHudComponent ( "area_name", false ) showPlayerHudComponent ( "Money", false ) triggerServerEvent("TeamAauswahl", getLocalPlayer()) removeEventHandler("onClientRender",root,infobox) end,5000,1) end) addEventHandler("onClientGUIClick", teambbtn, function() destroyElement(Teambox) showCursor(false) fadeCamera(false,5) setTimer(function() showPlayerHudComponent ( "all", true ) showPlayerHudComponent ( "area_name", false ) showPlayerHudComponent ( "Money", false ) triggerServerEvent("TeamBauswahl", getLocalPlayer()) removeEventHandler("onClientRender",root,infobox) end,5000,1) end) end local function teamauswahlger() destroyElement(flagbox) Teambox = guiCreateWindow(0.3766,0.3417,0.2539,0.1406,"Wählen Sie bitte ein Team aus",true) guiWindowSetSizable(Teambox,false) teamabtn = guiCreateButton(15,33,100,82,"test",false,Teambox) teambbtn = guiCreateButton(210,35,100,82,"Caesar's Legion",false,Teambox) showCursor(true) addEventHandler("onClientGUIClick", teamabtn, function() destroyElement(Teambox) showCursor(false) fadeCamera(false,5) setTimer(function() showPlayerHudComponent ( "all", true ) showPlayerHudComponent ( "area_name", false ) showPlayerHudComponent ( "Money", false ) triggerServerEvent("TeamAauswahl", getLocalPlayer()) removeEventHandler("onClientRender",root,infobox) end,5000,1) end) addEventHandler("onClientGUIClick", teambbtn, function() destroyElement(Teambox) showCursor(false) fadeCamera(false,5) setTimer(function() showPlayerHudComponent ( "all", true ) showPlayerHudComponent ( "area_name", false ) showPlayerHudComponent ( "Money", false ) triggerServerEvent("TeamBauswahl", getLocalPlayer()) removeEventHandler("onClientRender",root,infobox) end,5000,1) end) end setTimer(function() flagbox = guiCreateWindow(0.3766,0.3417,0.2539,0.1406,"choose a Language/wähle eine Sprache",true) guiWindowSetSizable(flagbox,false) flageng = guiCreateStaticImage(15,33,100,82,"images/language/eng.png",false,flagbox) flagger = guiCreateStaticImage(210,35,100,82,"images/language/ger.png",false,flagbox) flagengbtn = guiCreateButton(15,33,100,82,"",false,flagbox) flaggerbtn = guiCreateButton(210,35,100,82,"",false,flagbox) showCursor(true) function infobox() dxDrawImage ( -15, 870, 250, 100, 'images/info.png', 0, 0, 0 ) local scriptinfo = dxDrawText("Script by HeArTBeaT",10, 885, 1265, 1000, tocolor(255,255,255,255),1,"pricedown","left","top",true,false,false) local versioninfo = dxDrawText("Fallout San Andreas",10, 917, 1265, 939,tocolor(255,255,255,255),1,"pricedown","left","top",true,false,false) end addEventHandler("onClientRender",root,infobox) addEventHandler("onClientGUIClick", flagengbtn, function() teamauswahleng() end) addEventHandler("onClientGUIClick", flaggerbtn, function() teamauswahlger() end) end,5000,1)
-
CAN YOU GUYS GIVE ME A LIST OF ALL THESE? or a link to a site (something like WIKI for gta skins id) where it can tell me the name of the objects?
-
nO i WANT TO USE IT FROM A CONTROL PANEL
-
I want to make 4 teams . each team has its own skin , and base. a player that will enter the server will get to choose what team he wants to be on . I only need a example how it should be , then I will learn from trying
-
So this does what exactly? Creates a team that the player can choose or?
-
so r , g ,b is the possition? then where to place the skin id
-
Can anybody tell me if what I did is correct? function createTeam (Chinese Remnants) createTeam (121, 160.26131, -1846.62866, 3.77344) end
-
use the patch in this video the download link is in the description.