-
Posts
4,961 -
Joined
-
Last visited
Everything posted by Jaysds1
-
Try uninstalling it and downloading it again.
-
no, In the MTA San Andreas Folder, did u changed the server Folder name? Directory: C:\Program Files\MTA San Andreas 1.1
-
Please Update the following: Graphic Driver and send me another DX Dialog if there's still a problem please.
-
Did u changed your Server folder name?
-
Can u show me your computer DX Diolog please: and paste it here
-
sure, Here: <settings></settings>
-
I never took it from another topic, i was working with Zalmon b4 then I just edited the script and try to make it a bind key, that's all, and it's really mine.
-
Hi everyone again, I'm having a trouble with this Local chat script, When the person/player presses u, it's suppose to show "Local" instead of "Say" and have the type in, but the keys aren't bind and it doesn't work at all addEventHandler("onPlayerJoin", getRootElement(), function(player) bindKey(player,"u","down",locl) end) addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function(player) for index, player in pairs(getElementsByType("player")) do unbindKey ( player, "u", "down",locl ) end end) function locl(button,state,_,...) if (button == "left") and (state == "down") then local px,py,pz = getElementPosition(source) local msg = table.concat({...}, " ") local nick = getPlayerName(source) local r,g,b = getTeamColor(getPlayerTeam(source)) for _,v in ipairs(getElementsByType("player")) do if isPlayerInRangeOfPoint(v,px,py,pz,chat_range) then outputChatBox("(Local) "..nick..": "..msg,v,r,g,b,true) end end end end function isPlayerInRangeOfPoint(player,x,y,z,range) local px,py,pz=getElementPosition(player) return ((x-px)^2+(y-py)^2+(z-pz)^2)^0.5<=range end
-
Here's a Compiler, but you can't decompile this, it should leave the non compiled version still.
-
Did you try reinstalling MTA 1.1?
-
Is there an error message that comes out? And How much is your Connection speed Uploads/Downloads?
-
So you could hear the custom sounds, not the regular sounds like Foot steps, gunshots, car engine?
-
Do you have mods?
-
ok, it might be the: Loading Screen Resources Server If it's the loading screen, then you might have to wait before saying it doesn't work, if you waited more than 3mins, then it's the resources the person put on there server, they might have put the sane resources as it says in the Directory List.txt file that " a resource will not load if it exists twice anywhere in the directory hierarchy." or forgot to put the resource in the folder "resources", and if it's correctly done then it's the server, I don't know really nothing about c++ programing.
-
lol, same I don't even want to know
-
Try this: --Server side addEventHandler("onPlayerJoin",getResourceRootElement(getThisResource()),function() bindKey (source, "f3", "down", tapP) end) addEventHandler("onResourceStart",getRootElement(), function() for index, player in pairs(getElementsByType("player")) do unbindKey ( player, "f3", "down", tapP) end end) function tapP() triggerClientEvent(source,"tPan",getRootElement()) end --Client-side function tp() local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true ) local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, myWindow ) local tabMap = guiCreateTab( "information", tabPanel ) local tabHelp = guiCreateTab( "Need Help?", tabPanel ) guiCreateLabel(0.02,0.04,0.94,0.2,"This server By|x[Dev-PoinT]x",true,tabMap) guiCreateLabel(0.02,0.04,0.94,0.92,"Email:[email protected]",true,tabHelp) end addEventHaadler("onClientResourceStart",resourceRoot,function() tp() end) addEvent("tPan",true) addEventHandler("tPan",getRootElement(), function() guiSetVisible(myWindow, not guiGetVisible(myWiindw)) showCursor(not isCursorShowing()) end)
-
Can u connect to other server including yours? If not then try uninstalling everything and reinstall it. if the problem persist then Were going to have to know your system information.
-
ok, I'll try EDITED: IT WORKS, Thanks
-
There is, Does it matter if i changed my Folder name?
-
When I finish installing MTA 1.1 again, i clicked on Map Editor and get this "Server not installed". Any help?
-
Never Mind ABOUT THIS WHOLE THING, I REINSTALLED EVERYTHING!
-
HI, I have a little problem, When i start my server and try to test it on MTA Client, this error message come up saying that the Connection is Timed Out, but my server is all set up like my other server and my MTA Client works perfectly , I tried it on God Clan Server and it works but my server isn't working, I thought it was my irc but it wasn't so I think it's the files in the server. IMPORTANT INFO: I'm using MTA Server 1.1 and MTA Client 1.1. Any help?