-
Posts
1,391 -
Joined
-
Last visited
-
Days Won
2
Everything posted by HunT
-
Can u Edit My Maverick Minigun : addEventHandler("onClientVehicleEnter", root, function(thePlayer, seat) local theVehicle = source if seat == 0 and thePlayer == localPlayer and getElementModel(theVehicle) == 487 then local x, y, z = getElementPosition ( theVehicle ) local rx, ry, rz = getElementRotation ( theVehicle ) minigunOne = createWeapon ( "minigun", x, y, z ) minigunTwo = createWeapon ("minigun", x, y, z ) setElementAlpha ( minigunOne,0) setElementAlpha ( minigunTwo,0) attachElements ( minigunOne, theVehicle, 1.15, 2, -1.3, 0, 0, 93 ) attachElements ( minigunTwo, theVehicle, -1.15, 2, -1.3, 0, 0, 93 ) bindKey ( "mouse1", "down", enableFire ) bindKey ( "mouse1", "up", disableFire ) end end ) addEventHandler("onClientVehicleExit", root, function(thePlayer, seat) local theVehicle = source if seat == 0 and thePlayer == localPlayer and getElementModel(theVehicle) == 487 then if minigunOne and minigunTwo then destroyElement (minigunOne) destroyElement (minigunTwo) unbindKey ( "mouse1", "down", enableFire ) unbindKey ( "mouse1", "up", disableFire ) end end end ) function enableFire() if isTimer(MGtimer) and isTimer(MG2timer) and minigunOne and minigunTwo then killTimer(MGtimer) killTimer(MG2timer) else MGtimer = setTimer(function() setWeaponState ( minigunOne, "firing" ) end, 50, 1) MG2timer = setTimer(function() setWeaponState ( minigunTwo, "firing" ) end, 50, 1) MiniSound = playSound ( "Pro_Minigun.wav",true) setSoundVolume(MiniSound, 0.4) setSoundEffectEnabled(MiniSound,"gargle",true) setSoundSpeed ( MiniSound, 0.9 ) end end function disableFire() if isTimer(MGtimer) and isTimer(MG2timer) and minigunOne and minigunTwo then killTimer(MGtimer) killTimer(MG2timer) else MGtimer = setTimer(function() setWeaponState ( minigunOne, "ready" ) end, 50, 1) MG2timer = setTimer(function() setWeaponState ( minigunTwo, "ready" ) end, 50, 1) stopSound ( MiniSound ) end end Need Edit : getElementModel(theVehicle) == 487 (487 is maverick u need edit this for other vehicle) attachElements ( minigunOne, theVehicle, 1.15, 2, -1.3, 0, 0, 93 ) position minigun 1 attachElements ( minigunTwo, theVehicle, -1.15, 2, -1.3, 0, 0, 93 ) position minigun 2 Full Resource : http://www.mediafire.com/?d610bys9l88jvre
-
Why if the player enter the link with large image (example 3000x3000 3mb) other players download 3 mb for nothing,why after download the checker say : max size 50x50,and sure lag Tnx Cadu12 but i don't know the php never use this. --------------------------- Solved
-
I test This one and work fine,with check size image 50x50. But this is the problem i can check the size after download the image, but not before. How I can check the size before download?
-
MCC? (wtf in Italiano) Anyway ti informo che Riccardo non è in grado di fare quello che hai detto,pur se ci riesce no funzionerà. Per il fatto della dimensione hai ragione ma per il resto . . .
-
Error debug? U have edit scoreboard?
-
Tnx Guys. I like make free scripts for community
-
Info Map Panel FREE DownLoad Here : http://www.mediafire.com/?5fd2l5i6nl5dbhp PassWord : FacePalm --------------------------------------------- Easy Info Map Panel For Race Game Mode Feature : Elements GUI with Relative Position (Tnx R3mp For GuiEditor) Name Map Author Times Played Current Rating Times Rating The script is Compiled But u can change the RGB color text in Admin Panel/Resource/Setting or u can change in meta.xml Setting : Color R 0-255 Color G 0-255 Color B 0-255 Time For Hide The Panel 1-15 (Default Value is 5 = The panel hide after 5 seconds) Have Fun
-
setTimer (function ( player , ... ) -- close the setTimer
-
setSkyGradientsetSkyGradient???? Maybe setSkyGradient
-
Ok tnx. If I make the check size image example 50x50 the download in not problem. But the wiki show only the example with dx function,I can use this in GUI element? Or work only with shader.
-
Yup I know this,but i want make the real avatar selection. If i use the gridlist and click the name of player I download every time the image?
-
Hi guys. I need info about this function. My question is : if i use the fetchRemote for images the player download one time the images or every times? Tnx for reply.
-
Can u use my pickup manager here : viewtopic.php?f=108&t=50029
-
NO!!! Why i can make this. But if u add the avatars/flags/interface/font maybe u can sell this job (easy)
-
Maybe (but really maybe) u can sell for $10 this job if u add : 1: Nice interface + custom font 2: Avatars Selection and if I click the name I show the avatar from the member.
-
--elements GUI guiGetText setAccountData onClientGuiClick getAccountData guiSetText $10 for what? With 20 minutes all members can make this Good luck for u bisness
-
well sure it might be, im not good at make a price for my works we can change the selling price of course. Sure About . . . "im not good at make a price for my works :p" . The real price is min. $5 max. $10 Is not easy script for a new (noob) scripter,but is realy easy if know how work the table insert and sort. Whit the price $30 maybe u no sell this job. Anyway nice job and good luck.
-
All Script Stolen or "edit". no buy from this guy.
-
Old school type? Anyway I have many maps from my old server (2010) If u want this I can give u in pm. Love old style maps without lag decoration.
-
I'm not sure but maybe is UAEpro The owner scripts. Joao u have talking with owner scripts for sell?
-
function checkStolenScript () theResource = "its all original" if theResource then -- why u not post the images about this? end end
-
What is the "text"? Check Again : https://wiki.multitheftauto.com/wiki/TriggerClientEvent
-
Gia Testata. Client Side : Fai un file e chiamalo -> rimorchio.lua <- ed inserisci questo : addEventHandler("onClientVehicleEnter", root, function(thePlayer, seat) local theVehicle = source if seat == 0 and thePlayer == localPlayer and getElementModel(theVehicle) == 515 then rimorchio = createVehicle ( 450, 0, 0, 0 ) attachTrailerToVehicle ( theVehicle, rimorchio) end end ) addEventHandler("onClientVehicleExit", root, function(thePlayer, seat) local theVehicle = source if seat == 0 and thePlayer == localPlayer and getElementModel(theVehicle) == 515 then destroyElement (rimorchio) end end ) Nel meta.xml aggiungi : <script src="rimorchio.lua" type="client" /> Aggiungi questa stringa subito dopo Esempio : <meta> <script src="rimorchio.lua" type="client" />
