Jump to content

[REQ] 3 scripts


Andry

Recommended Posts

I ask three scripts.

1) A nice speedometer (xD)

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! :D:!::mrgreen:

Link to comment
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?

Link to comment

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.

Link to comment
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

Link to comment

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>

Link to comment
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".. :mrgreen:

its not alot work but its work nowan wants to do for others :wink:

Link to comment
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 xD 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 :wink:

dont say no because u lie then

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...