xXMADEXx
Members-
Posts
2,718 -
Joined
-
Last visited
Everything posted by xXMADEXx
-
Replace: if ( bodypart == 9,8,7,6,5,4,3) then with if ( bodypart==9) or (bodypart==8) or (bodypart==7) or (bodypart==6) or (bodypart==5) or (bodypart==4) or (bodypart==3) then
-
Very nice, keep up the excellent work.
-
im not sure, but maybe through a shader?
-
wow, yes. But, this is an edit of my real code, and that mistake isn't there, in main code good eye.
-
Hey guys, im making basic script, and for some reason the event "onClientRender" isn't getting the players height... ClientCode: function checkHight() local x,y,z = getElementPosition(localPlayer) if (z < 35) and (z > 50) then stopBummperCarsHeightChecker() end end function startHeightChecking() addEventHandler("onClientRender", root, checkHight) end addEvent("events:startBummperCarsHeightChecker", true) addEventHandler("events:startBummperCarsHeightChecker", root, startHeightChecking) function stopBummperCarsHeightChecker() removeEventHandler("onClientRender", root, checkHight) triggerServerEvent("events:bummperCars.PlayerOverHeightLimit", localPlayer) end ServerCode *Not All*: addCommandHandler("bump", function (p) riggerClientEvent(p, "events:startBummperCarsHeightChecker", p) end ) function killPedReasonLeftPlatform() local car = getPedOccupiedVehicle(source) setElementHealth(source, 0) destroyElement(car) end addEvent("events:bummperCars.PlayerOverHeightLimit",true) addEventHandler("events:bummperCars.PlayerOverHeightLimit", root, killPedReasonLeftPlatform)
-
Maybe "onClientSoundStream" ?
-
^^ that is your local IP, not your connection IP. http://www.whatsmyip.org
-
Did u enable the colored text in the arguments?
-
Basics: createColRectangle -- or createMarker createObject moveObject
-
im not sure if you can, but could your use triggerClientEvent with the remote?
-
It depends on how the Jail script is made. BTW, this is a HELP page, not a REQUEST page.
-
Use the "Other Languages" board... or google translate.
-
Can you explain I do not know too much about the script Read the arguments: https://wiki.multitheftauto.com
-
For some reason, the table is returning, but the data inside is returning nil addEventHandler("onClientSoundStream",root, function(suc,length,streamN) if not suc then return end local meta = getSoundMetaTags(source) outputChatBox(meta.artist) end )
-
functions:: createMarker createObject moveObject -- Event onMarkerHit
-
Hello everyone. I'm trying to become a C++ programmer, and so far things are going pretty good! If you would like a C++ application to your server and server forum, post a comment with the following: * = required * MTA Server IP: * MTA Server Port: Forum URL: Server Icon: Others (other buttons, etc): Ill try to create it, but it might be a while, depending on my list. ------------------------------------------------ - Ill include the source code also. -- ------------------------------------------------ Here is an example of one that i've made for the SAUR server...
-
Hello, everybody. Im making a freeroam server, and i got basic stuff down for it... Post any idea's that you'd like to see in a freeroam server, here is a list of stuff that we already have: - Floating DX text (Telling you, what coaster/ramp your at) - Elevators (Fast travel to top of ramps/coasters) - Custom Maps (Including mega ramps, and roller coasters) - Effects Panel (Including custom water and sky colors, of your choice) - Music Panel (Live radio's) - Hedit (Handling Editor) - Godmode Cars (Your car cannot explode!) Just post any great idea!
