-
Posts
1,028 -
Joined
-
Last visited
-
Days Won
1
Everything posted by ..:D&G:..
-
I know this... But here are tooo many files for me to check, isn't there another way I can find where the command is?
-
Is there anyway I can find the script where a command is when I use it?
-
Hey, I get this error when I join the game: bad argument #! to 'gsub' (string expected, got boolean) local mapName2 = mapName for k,v in ipairs(MapTags) do mapName2 = string.gsub(mapName2,v,"") --< --This line end
-
How are we supposed to know what you need to modify if we haven't even know how the script looks like -.-
-
Well, as you might noticed it says ''denied command'', so your account does not have acces to the create table command. I recommend you reinstall your MySQL (xammp or wamp, depending of what your are using) and leave the default name which is 'root' or you could give yourself the rights needed (I don't know how ).
-
[quote name=..&G:..]This guy has put a file with his skype id saying that he will give us gamemodes https://community.multitheftauto.com/index.php?p= ... ls&id=8359 DONE Same guy and same download https://community.multitheftauto.com/index.php?p= ... ls&id=8385 Just please ban the user DONE
-
I just brought a server from you, had some problems but the staff helped me straight away
-
Hey, I want to buy a server from sane hosting, but I need some feedback from those who are/were hosted by them, or from those who know something about them...
-
Hey, I see this error very often and I don't know what It means. I know what the Table expected means but I don't know what string and got boolean means... Can someone explain this to me please?
-
Is there possible to have lines deleted from meta.xml without even tuching the file? Thanks solved it..
-
Same thing... And in the chat box says false...
-
Doesn't work.. It only shows nil in the chat box: This is how all this thing looks like http://4stor.com/dQ9vi
-
local sx, sy = guiGetScreenSize()
-
This is the code that I made: function showPhoneGui(itemValue) wPhoneMenu = guiCreateStaticImage(sx/2 - 125,sy/2 - 175,250,450,"phone.png",false) cCall = guiCreateStaticImage(0.12,0.23,0.18,0.13,"butoane/Suna.png",true, wPhoneMenu) bNumbers = guiCreateStaticImage(0.42,0.23,0.18,0.13,"butoane/Agenda.png",true, wPhoneMenu) bRingtones = guiCreateStaticImage(0.71,0.23,0.18,0.13,"butoane/Sonerii.png",true, wPhoneMenu) cNotite = guiCreateStaticImage(0.12, 0.38, 0.18, 0.13, "butoane/Notite.png",true, wPhoneMenu) cCopyright = guiCreateLabel(549, 618, 181, 15, "Copyright © România World Gaming - D&G", false) guiSetFont(cCopyright, "default-small") guiLabelSetVerticalAlign(cCopyright, "top") bCancel = guiCreateButton(0.3880,0.8667,0.2200,0.0933,"Ieși",true,wPhoneMenu) guiGridListSetSelectedItem(gRingtones, itemValue, 1) guiSetAlpha(bCancel,0) addEventHandler("onClientGUIClick", getRootElement(), onGuiClick) showCursor(true) --Sună setElementData(cCall, "tooltip-text", "Apelare", false) setElementData(cCall, "tooltip-color", "#FFFFFF", false) setElementData(cCall, "tooltip-background", "#666666", false) --Numere setElementData(bNumbers, "tooltip-text", "Agendă", false) setElementData(bNumbers, "tooltip-color", "#FFFFFF", false) setElementData(bNumbers, "tooltip-background", "#666666", false) --Sonerii setElementData(bRingtones, "tooltip-text", "Sonerii", false) setElementData(bRingtones, "tooltip-color", "#FFFFFF", false) setElementData(bRingtones, "tooltip-background", "#666666", false) --Notite setElementData(cNotite, "tooltip-text", "Notițe", false) setElementData(cNotite, "tooltip-color", "#FFFFFF", false) setElementData(cNotite, "tooltip-background", "#666666", false) end addEvent("showPhoneGUI", true) addEventHandler("showPhoneGUI", getRootElement(), showPhoneGui)
-
Yep, well, as it worked 1 day ago, yes...
-
Well, the image is not loading, otherwise the buttons won't be bigger(as they normaly use the size of the main image)... And it worked before, but sudantly it doesn't now..
-
So, I created this phone system, with a static image as the main window. When I open the phone, only the buttons (static images) appear, but bigger and on all of the screen, but the main window doesn't... wPhoneMenu = guiCreateStaticImage(sx/2 - 125,sy/2 - 175,250,450,"phone.png",false)
-
This guy has put a file with his skype id saying that he will give us gamemodes https://community.multitheftauto.com/index.php?p= ... ls&id=8359 DONE
-
Skin mod: https://community.multitheftauto.com/index.php?p= ... ls&id=8365 DONE
-
And because they give the scripts to their ''friends'' (happened to me )
-
I have a small question. Why do good gamemodes (mostly Roleplay as I saw) get leaked? Like Arsenic and other. Is this how MTA's best servers have to end?
-
A: Maybe.., BUT NOW I DON'T GIVE A :~ Just don't drink and dive, smoke and flyyyy!! Q: Did your parents hit you in the head when you were small?
-
Anyway doesn't matter... MTA keeps closing all the time I put the moded cloth on Thanks for help BTW
-
Ok thanks, but I want to know more about this, gain more knowlege There is the word 'id' in the replacement like. If I put id in the script, does it gonna know that I am talking about an ID just by the word 'id'? And how does it know which one is the id?
-
Ok, so where it sais "name" do I have to put the name of the cloth? Or do I have to change 'id' into the cloth's id? -------EDITED------- This is what I done and it doesn't work: texturi = { ["capgangback"] = id, ["tuxedo"] = id, ["captruck"] = id, ["suit1trblk2"] = id, ["bandblack"] = id, ["bandred"] = id, ["capredback"] = id, ["sportjack"] = id, ["capredside"] = id, ["capredup"] = id, } function replaceClothes() for haina, id in pairs(texturi) do local txd = engineLoadTXD (haina..".txd") engineImportTXD(txd, id) end end addEventHandler ("onClientResourceStart", resourceRoot, replaceClothes)