Andry Posted May 31, 2010 Posted May 31, 2010 I ask three scripts. 1) A nice speedometer () 2) The script for thj points in the racemode 3) UserPanel whit the shop where i can buy: Mine of plant, Repair for the vehicle and the nitro for the vehicle Pls Send me this Scripts!
robhol Posted May 31, 2010 Posted May 31, 2010 Uhh... no? You have no idea what you're asking, this is a lot of work. If you can't find anything on the community resources page, chances are you're out of luck.. And it's GROVE! NOT "groove".. Do NOT PM ME for help unless invited. - New MTA Script Editor Scripting help "etiquette": understandable language, relevant code (ALL code if unsure), [Lua] tags, error messages with line numbers. Super simple stuff.
Andry Posted May 31, 2010 Author Posted May 31, 2010 Uhh ... no? Non avete idea di cosa stai chiedendo, questo è un sacco di lavoro.Se non riesci a trovare nulla sulla pagina risorse della comunità, è probabile che sei fuori di fortuna .. Ed è Grove! NON "groove" .. : Mrgreen: Is there a way to download some scripts from a server?
robhol Posted May 31, 2010 Posted May 31, 2010 No. Do NOT PM ME for help unless invited. - New MTA Script Editor Scripting help "etiquette": understandable language, relevant code (ALL code if unsure), [Lua] tags, error messages with line numbers. Super simple stuff.
dzek (varez) Posted May 31, 2010 Posted May 31, 2010 why they all like to copy same features for all servers? Multi theft auto tools - replace cars and peds, move your map or compile your Lua files online! programista php rzeszów Need free webhosting for your small site? PM me. Need help with portforwarding? PM me. Do not PM me asking for help with scripting. Having problems with port forwarding? Send me pm, I can do whole thing for you using TeamViewer (already helped about 20 people, no worries)!
robhol Posted May 31, 2010 Posted May 31, 2010 Lack of imagination, I guess.. and a profound aversion against actually doing work of their own? Do NOT PM ME for help unless invited. - New MTA Script Editor Scripting help "etiquette": understandable language, relevant code (ALL code if unsure), [Lua] tags, error messages with line numbers. Super simple stuff.
Castillo Posted May 31, 2010 Posted May 31, 2010 well, u have to script this so i recomend to start to learn how to script and make it by yourself San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
Xierra Posted June 1, 2010 Posted June 1, 2010 Yeah those two (except number 1) is made by themselves, you have to script it by yourself. Number 1 has 5 speedometers to choose from: 1. Analog DXSpeedometer Cool ones, but It's laggy if you got slow computer. 2. Normal Analog Speedometer Not laggy, and you can change the speedo picture too. 3. Digital speedometer with bar and damage. Best for the digital! 4. Compact Digital speedometer replaces health bar when inside a vehicle. 5. Simple Digital speedometer In a GUI. XX3 is gone. This is my new name. :3
Andry Posted June 3, 2010 Author Posted June 3, 2010 Yeah those two (except number 1) is made by themselves, you have to script it by yourself.Number 1 has 5 speedometers to choose from: 1. Analog DXSpeedometer Cool ones, but It's laggy if you got slow computer. 2. Normal Analog Speedometer Not laggy, and you can change the speedo picture too. 3. Digital speedometer with bar and damage. Best for the digital! 4. Compact Digital speedometer replaces health bar when inside a vehicle. 5. Simple Digital speedometer In a GUI. ThX Very much
kevin11 Posted June 3, 2010 Posted June 3, 2010 here is another answer press f6 to open it and i gues ur not a good scripter so i added meta.xml well, i made it for you but you must know that i wont make anything u post here so start to learn by yourself client side: GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Window[1] = guiCreateWindow(161,102,390,342,"Buy window",false) GUIEditor_Button[1] = guiCreateButton(31,25,90,18,"Buy nitro",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(30,46,91,17,"Buy repair",false,GUIEditor_Window[1]) GUIEditor_Memo[1] = guiCreateMemo(131,25,209,50,"Press Buy nitro to buy a nitro\nPress buy repair to buy a repair",false,GUIEditor_Window[1]) guiSetVisible(GUIEditor_Window[1], false) function guiToggleVisible ( ) if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then guiSetVisible(GUIEditor_Window[1], false) showCursor ( false ) else guiSetVisible(GUIEditor_Window[1], true) showCursor ( true ) end end bindKey ( "f6", "down", guiToggleVisible ) function fixv() triggerServerEvent("fixRequest", getLocalPlayer()) end addEventHandler("onClientGUIClick",GUIEditor_Button[2],fixv,false) function nitro() triggerServerEvent("nitro", getLocalPlayer()) end addEventHandler("onClientGUIClick",GUIEditor_Button[1],nitro,false) server side: addEvent("nitro", true) addEventHandler("nitro", getRootElement(), function() if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 7000 ) then takePlayerMoney(source, 7000) addVehicleUpgrade(getPedOccupiedVehicle(source),1010) outputChatBox("Nitro Successfully added", source, 255, 255, 0, true) else outputChatBox("Not enough money.", source, 255, 0, 0, true) end else outputChatBox("You are not in a vehicle", source, 255, 0, 0, true) end end ) addEvent("fixRequest", true) addEventHandler("fixRequest", getRootElement(), function() if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 20000 ) then takePlayerMoney(source, 20000) fixVehicle(getPedOccupiedVehicle(source)) outputChatBox("Vehicle Successfully Fixed", source, 255, 255, 0, true) else outputChatBox("Not enough money.", source, 255, 0, 0, true) end else outputChatBox("You are not in a vehicle", source, 255, 0, 0, true) end end ) <meta> <info name="Shop" author="solidsnake14" version="1.0" type="script" /> <script src="client.lua" type="client"/> <script src="server.lua" type="server"/> </meta>
kevin11 Posted June 3, 2010 Posted June 3, 2010 Uhh... no? You have no idea what you're asking, this is a lot of work.If you can't find anything on the community resources page, chances are you're out of luck.. And it's GROVE! NOT "groove".. its not alot work but its work nowan wants to do for others
robhol Posted June 3, 2010 Posted June 3, 2010 Then you do it, and afterwards you can tell me if it was a lot of work... and unless you've gotten a lot better since your last post here, you have absolutely no idea what you're talking about. Do NOT PM ME for help unless invited. - New MTA Script Editor Scripting help "etiquette": understandable language, relevant code (ALL code if unsure), [Lua] tags, error messages with line numbers. Super simple stuff.
kevin11 Posted June 3, 2010 Posted June 3, 2010 Then you do it, and afterwards you can tell me if it was a lot of work... and unless you've gotten a lot better since your last post here, you have absolutely no idea what you're talking about. nope i dont know what im talking about but i know it doesnt take 1 hour to make a points script and well im learning, if u think im dum just think when u started lua, u might didnt ask alot like me but u knew same as me dont say no because u lie then
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now