Deepu
Members-
Posts
354 -
Joined
-
Last visited
Everything posted by Deepu
-
TAPL what was the problem? I mean what did I miss out? why was the second marker not functional? Tell in detail please and thanks
-
Look this problem started from yesterday when I do multiple markers this error comes local marker1 = createMarker (x, y, z, "cylinder", 2, 255, 2, 0) thePlayer = getLocalPlayer () function name (hitPlayer, matchingDimension) local marker2 = createMarker(x, y, z, "cylinder", 2, 255, 2, 0) end addEventHandler("onClientMarkerHit", marker1, name) function namer (hitPlayer, matchingDimension) setPlayerHealth(thePlayer, 100) end addEventHandler("onClientMarkerHit", marker2, namer) the warning is that it tells that there is no marker in the script named marker2 Bad Argument at ..... eventhandler expected function at number 2 got nil Please reply as soon as you can and thanks
-
My friends can't join my Hamachi server in MTA Please explain clearly what to do step by step Teller will get an admin ship in my server
-
how do u do that exception for only MTASERVER.EXE?
-
Have you tried this MTA LUA FUNCTION? setLowLODElement(theElement, lowLODElement) Try it and give a reply
-
THIS GUY KRZO IS A FREAKIN HACKER AND A SCAMMER HE SAID "OH! DON I WILL MAKE YOU AN ADMIN IN MY SERVER, PLEASE MAKE ME FREE SCRIPTS" I SAID " OH SURE KRZO ! DON'T BREAK YOUR PROMISE" HE SAID "MAKE ME PILOT JOB DON" I SAID "SURE FRIEND" HE SAID THANK YOU AND BANNED ME IN HIS SERVER AND REMOVED ME IN SKYPE NOW HE EXAMINED MY SCRIPTS AND TRY TO MAKE A JOB But How does he know to make missions? Poor fellow
-
you wanna first make a gate, then you gotta override the lua functions that is local gate = createObject(id, x, y, z, rx, ry, rz) local marker = createMarker(x, y, z, "cylinder", 2, 0, 200, 255) function openGate (hitPlayer, matchingDimension) moveObject(gate, x, y, z) --- where you wanna move the gate to end addEventHandler("onClientMarkerHit", marker, openGate) function closeGate(leavingPlayer, matchingDimension) moveObject(gate, x, y, z) -- original position end addEventHandler("onClientMarkerLeave", marker, closeGate)
-
In this script of mine, I can enter a room with a door that takes me to the floor that I choose in the gui If I press 3 It takes me to 3rd floor in 3 seconds nice? I will upload pics or videos If you are interested in this I will provide download and tell me some suggestions to improve this script thanks, Don(Deepu)
-
Thanks STR4 well I am uploading my second script ----> I improved my Rocket script I will be uploading it again in the same category Thanks BTW
-
Look my rocket script --> a test one Gonna Improve it and give Download link too please comment in youtube Thanks Tell me ways to improve it
-
Kozo ---> this guy is a scammer. Please dont script for him He said he give me staff I made him pilot job script and he banned me in his server and unfriended in skype He is cheater Dont help him
-
I can script for you.... Its free I script free for anyone contact me @ deepu.ramachandran2 I can make these -----------------------> moving gates teleport marker Jobs maps BR(bank Robbery or anything like that ) elevators that you find in buildings which take you up and down when you click the floor you wanna go rocket script (recent one -- trying to improve it) login pizza, burger, ammo shop, and all vehicle spawns GUIs player spawns and many more..... You wanna add me in your server's co-owner or the scripting team? Sure I can work for you
-
the passwords don't work either and can I only portforward through wifi router if i have 2 routers? one is wifi and other is wireless PLEASE HELP !
-
the problem is that I have 2 routers of which I lost the pass and username of one router now port forward doesnt work one is wired and other wireless lost password of wired one Help !
-
can someone please help me? I have 2 routers and port forward doesnt work -.- also i dont know password of one router help
-
Friend .... try to learn scripting yourself.... Here tutorial (helping you a bit) thePlayer = getLocalPlayer () -- this is for getting the player who is playing local Marker = createMarker(x,y,z,"type",size,R,G,B,A) -- x,y,z are positions of marker, type can be cylinder, arrow, etc function shit () -- this is the function with its name and hitPlayer and matchingDimensions is when player hits marker with same dimension of marker givePlayerMoney(thePlayer, 10000) end addEventHandler("onClientMarkerHit", Marker, shit) Now learn it in mtasa wiki
-
Gud luck with your server
-
btw thanks NOki I hope that happens You CSG scripter ri8? I Lovee CSG I was there once
-
sure ma friendz I will make scripts for you for free but uhh I am not familiar with gamemodes But I will try to make one well i will work on that and try to make it for ya and castillo sorry My brother flamed you in forums He is a **** and I hate him Can you unban ma forum acc? If you can....... I want a chance to be in SAUR scripting team too even if i am not in admin, juz take my scripts and ya I am banned ingame too for no reason .... allentus said I am reported 4 times in forums when I am reported juz once and banned me forEver ---- WTF? Please unban forum acc so that I can appeal it thank you Castillo & Dwayne -------- Respect +++++++++++++ ___________________________________________________________________________________________________________ yo want a free scriptah? Contact Me Niggah skype = deepu.ramachandran2 (studying Picture) I AM BUSY NOW-A-DayZ cuz of scriptin and studies I AM SERIOUS
-
Friend, I told you * Just put it in the Server sided lua thingy and then use this in client one ======= the server sided one :- name it server.lua function carSpawn () sabre = createVehicle(422, 1541, -1627.4000244141, 12.60000038147) warpPedIntoVehicle(thePlayer, sabre) addEvent("onSpawnVehicle", true) addEventHandler("onSpawnVehicle", getRootElement(), carSpawn) end now this is the client sided one:- client.lua local spawnMarker = createMarker(1541, -1627.4000244141, 12.60000038147, "cylinder", 2, 225, 163, 25, 225) function carGui (hitPlayer, matchingDimension) mainWindow = guiCreateWindow(266, 103, 277, 374, "Spawn Window for u", false) carsG = guiCreateGridList(9, 28, 258, 284, false, mainWindow) guiGridListAddColumn(carsG, "cars", 0.9) for i = 1, 2 do guiGridListAddRow(carsG) end guiGridListSetItemText(carsG, 0, 1, "sabre", false, false) guiGridListSetItemText(carsG, 1, 1, "Nrg-500", false, false) spawnButton = guiCreateButton(9, 320, 128, 44, "spawn", false, mainWindow) guiSetFont(spawnButton, "sa-header") cancelButton = guiCreateButton(144, 322, 123, 42, "cancel", false, mainWindow) guiSetFont(cancelButton, "sa-header") showCursor(true) sabre = createVehicle(422, 1541, -1627.4000244141, 12.60000038147) warpPedIntoVehicle(hitPlayer,sabre) -- this function doesn't work in my MTA, so just check it in yours and if it doesn't work put it in server side end addEventHandler("onClientMarkerHit", spawnMarker, carGui) function spawnCar () if (source==spawnButton) then triggerServerEvent("onSpawnVehicle", sabre) addEventHandler("onClientGUIClick", root, spawnCar) end end try this if any more errors then call me PS I was Busy so dint come online
-
local spawnMarker = createMarker(1541, -1627.4000244141, 12.60000038147, "cylinder", 2, 225, 163, 25, 225) function carGui (hitPlayer, matchingDimension) mainWindow = guiCreateWindow(266, 103, 277, 374, "Spawn Window for u", false) carsG = guiCreateGridList(9, 28, 258, 284, false, mainWindow) guiGridListAddColumn(carsG, "cars", 0.9) for i = 1, 2 do guiGridListAddRow(carsG) end guiGridListSetItemText(carsG, 0, 1, "sabre", false, false) guiGridListSetItemText(carsG, 1, 1, "Nrg-500", false, false) spawnButton = guiCreateButton(9, 320, 128, 44, "spawn", false, mainWindow) guiSetFont(spawnButton, "sa-header") cancelButton = guiCreateButton(144, 322, 123, 42, "cancel", false, mainWindow) guiSetFont(cancelButton, "sa-header") showCursor(true) sabre = createVehicle(422, 1541, -1627.4000244141, 12.60000038147) warpPedIntoVehicle(hitPlayer,sabre) -- this function doesn't work in my MTA, so just check it in yours and if it doesn't work put it in server side end addEventHandler("onClientMarkerHit", spawnMarker, carGui) function spawnCar () if (source==spawnButton) then sabre = createVehicle(422, 1541, -1627.4000244141, 12.60000038147) warpPedIntoVehicle(hitPlayer, sabre) end end addEventHandler("onClientGUIClick", root, spawnCar) Hope you understood how u make it also When I tested it [juz tested it once] the car spawns but I can't enter the car I made it so fast cuz i had exams so if any errors contact me Also If you have a RPG server, can I script for that server? possibly giving me admin rights? can you?
-
Sure I will make it for you... But learn how I made it ok? There is the script
-
thePlayer = getLocalPlayer () addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(498, 244, 362, 391, "car panel", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.gridlist[1] = guiCreateGridList(59, 26, 245, 242, false, GUIEditor.window[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "cars", 0.9) for i = 1, 4 do guiGridListAddRow(GUIEditor.gridlist[1]) end guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "Infernus", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "NRG-500", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "Sultan", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 3, 1, "Super GT", false, false) GUIEditor.button[1] = guiCreateButton(59, 268, 245, 49, "spawn car", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.button[2] = guiCreateButton(60, 338, 248, 43, "close", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") end function createInfernus() if (source==GUIEditor.button[1]) then infernus = createVehicle(ID, x, y, z) warpPedIntoVehicle(thePlayer, infernus, 0) showCursor(false) guiSetVisible(GUIEditor.window[1], false) end end addEventHandler("onClientGUIClick", root, createInfernus) ) The thing you missed is "onClientGUIClick" event handler Do the same for other cars like createInfernus function Did it So fast so if u have any errors then contact me I can help you And can I script for your server thankyou
-
I need a server to script for. If anyone wants me you can call me Don't worry its free now I won't ask for any money 0_o I am still 15 not an adult to earn money So please inform me as soon as you can Thank you Please give me a chance to script on your server Thanks again I am a good guy Fight For the win so don't worry I wont cheat you
