
AHSS
Members-
Posts
87 -
Joined
-
Last visited
Everything posted by AHSS
-
i accept JR10 his good and know english
-
nice work epic
-
Anyone knows any good shader tutorial? Maybe a book? Thanks.
-
the problem is my country aren't supported by paypal some gameserver hosts supports payment methods like AlertPay that i can use
-
Let's say a 100 players? I can't buy a dedi because i can't use paypal. but i found several gameservers hosts supports other payment methods.
-
I want to make an RPG server, assuming it succeeded, and we have like 300(will never happen, just assuming). And i have a gameserver host, will it crash or lag or anything? Tell me please.
-
What? I don't understand. Simply, Is there a way to fit a gui ( not just in the middle of the screen ) on all resolutions?
-
I made a gui-label. No parent, with relative values. It fits perfect on my screen 1440x900. I made it on that resolution. Now someone with resolution 800x600 Will not see it the same. I know guiGetScreenSize. I know screenX / 2 - windowX / 2 But I don't want it in the middle, I want it somewhere else, on the screen, fits on all resolutions.
-
All of my scripts are encoded in ANSI (didn't change it). I compiled it, then this error comes: "script path"[type] is encoded in ANSI instead of UTF-8. Please convert your file to UTF-8. UTF-8 is not supported by luac, UTF-8 without BOM is supported by luac, but not by MTA. So, IDK what to do, how to stop that. Another thing, can I use upgrade on a compiled script? thanks in advance.
-
If there is an official one, it will be updated, just like the map editor. It would be very useful.
-
Every one will agree with me on, that if the "guieditor" and the "QTToLua" didn't exist. Making GUIs would be horrible, creating a good looking gui, would be hard, and you need to bind /restart resourceName And keep editing it, until you get what you want, so what I'm suggesting is an Official GUI Creator/Editor. Just like the Map Editor. You can create the GUI, and get the code. I know that it's hard work, and you ( MTA Team ), are busy. But it would help every one, to have official gui editor.
-
How did you turn GTA SA music off?
-
With what program you capture the videos?
-
Hi, Post how you create your GUI Because I want to know what is the best way of Creating GUI. Thanks.
-
Can you explain more please? Perhaps give me an example? thanks.
-
is there a way to make a new chat type like this: bindKey(player, 'l', 'chatbox', 'Localchat') and then script what happens when the player types in the chat and press enter is this possible? thanks in advance
-
i bet you used to script in samp. first: you dont need to do any thing to make a float you just do this local floatX, floatY, floatZ = getElementPosition(element) floatX, floatY, floatZ is the 3 floats representing the element position they could be named any thing like local x, y, z = getElementPosition another example local health = getElementHealth(element) now the health is stored in the "health" variable but remember we used local so the health vartiable is only inside the function or whatever its inside can be used inside only. about the function here it is function createMyPickup(x, y, z) -- x, y, z is the position of the pickups cna also be named anything createPickup(x, y, z, 0, 100) --another function or event or command function createthepickup(player) local posX, posY, posZ = getElementPosition(player) -- 3 floats representing the player position createMyPickup(posX, posY, posZ) -- create the pick up at the player's position end and main wiki page : https://wiki.multitheftauto.com/wiki/Main_Page hope this helps.
-
ocalPlayer = getlocalPlayer () addEventHandler("onClientResourceStart", getResourceRootElement( getThisResource() ), function() outputChatBox("Resource Cash System Started, Press F1 To open GUI.",0,255,0) outputChatBox("Author: Klesh",0,255,0) userPanelWindow = guiCreateWindow(380,277,290,82,"Player Cash",false) Money_lab = guiCreateLabel(17,32,46,24,"Money :",false,playerMoneyLabel) guiLabelSetColor(Money_lab,0,255,0) playerMoneyLabel = guiCreateLabel(75,33,199,18,"\"\"",false,playerMoneyLabel) guiLabelSetColor(money_lab2,255,0,0) end ) function onresourceStart () bindkey ("F7", "down", showUserPanelWindow) end addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), onresourceStart) function showUserPanelWindow() getVisible = guiGetVisible (userPanelWindow) if (getVisible == true) then guiSetVisible (userPanelWindow, false) showCursor (false) end if (GetVisible == false) then guiGetVisible (userPanelWindow) showcursor (true) local PlayerMoney = getPlayerMoney(source) guiSetText ( playerMoneyLabel, " [ " .. playerMoney .. " ]" ) end end
-
i want to know how to make an element move with setElementVelocity like move it to certain coordinates but make it moves smoothly i know moveObject but im talking about elements and i want it with setElementVelocity like the velocity gun thanks in advance.
-
i tested it myself your marker was too high maybe u didnt see it i fixed it now it fits and on the ground marker = createMarker(-2032.97,-115.96,1034.17, 'cylinder', 1.0, 255, 255, 255, 255) setElementInterior(marker, 3)
-
there is no function for it or there is getAccountData for it? thanks in advance
-
local accounts = {} local password = getAccountData(getPlayerAccount(src), 'password') accounts[src] = addAccount(newnick, password) copyAccountData(accounts[src], getAccount(getPlayerName(src))) removeAccount(getAccount(getPlayerName(src))) and its not working any one know why? thanks in advance
-
hmm its working thanks for quick reply but what about the gui is the best solution is to hide it then make it appear again? or what? thanks again
-
when a player join he downloads the files and resources (client sided) so when i create a gui on player joins and show it then it might not appear so its better to hide it and show it later so what if i want to play a sound on player joins i tried it didnt play had to reconnect after downloading so what should i do to play it correctly on player joins and after downloading? thanks in advance