-
Posts
56 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Deihim007
-
Yes i know i could easily edit those to compile a whole folder but i don't know how otherwise i wouldn't bother to ask
-
Hi people. I'm looking for a .sh script to encrypt everything in the folder like this *.lua => *.luac i checked https://luac.multitheftauto.com/api/ but it only ecrypt one file.
-
[LF] Developers/helpers for CnR-RPG [Non-Paid]
Deihim007 replied to Deihim007's topic in Looking for staff
[LF]CnR-RPG[Non-Paid] final choice -
[LF] Developers/helpers for CnR-RPG [Non-Paid]
Deihim007 replied to Deihim007's topic in Looking for staff
well it's a offer to join a team, and idk what "LF" stands for. -
[LF] Developers/helpers for CnR-RPG [Non-Paid]
Deihim007 replied to Deihim007's topic in Looking for staff
[Offer]CnR-RPG[Non-Paid] -
[LF] Developers/helpers for CnR-RPG [Non-Paid]
Deihim007 replied to Deihim007's topic in Looking for staff
Ok How can i edit the title? -
Hello My name is Deihim and i'm 20 years old, i'm a IT student currently and been busy with computers whole my life as many of you. I'm sure all of you (us) always had a dream about having a Large gaming Community or having a bad-ass gaming server, well of course most of us didn't had the resources (money or time or even knowledge,...) or being too lazy. So i'm done with that and here i am. I'm here to support people who have talents but couldn't achieve anything for the reasons that i said. For the start it's gonna be a non-paid job but in progress i promise your time and energy wouldn't be unrewarded. Now i'm announcing that i'm creating a Community called NexusGaming. Also, already made a website few years ago (nexusgames.ir) so that's a start. I'm looking for unique people that have skills or even don't have but they're enthusiastic to make this from ground. For example you! that you just started learning scripting or even you that don't know about any code but you have good damn ideas. Great things being achieved by great minds. Well i explained myself and what i'm trying to do. And for my personality , i'm a friendly person but not naive , backing my friends and my close people always, always trying to be positive and look at the full half of the glass. That's all. (for now) Here is a list of things that i'm looking forward to create. A- Creating a community (in a shape of forums or something) B- Various Game Servers for example: 1- Minecraft 2- MTA SA (of course ) 3- CounterStrike Server 4- TeeWorld ( ) etc... (you can suggest any game servers when you joined the team) C- Well designed website. and... (always looking for ideas) And for the final words: "A big community is gonna shape, the question is this do you want to help it shape?". Well this is the MTA forum so this post has to be about it i'm looking for people in general details that i said up there but anyway for MTA server i'm looking for scripter. First of all i found a half worked script on the internet it almost has most of the features i needed but still,... i could start from scratches also but it's going to need a experienced scripter. It's gonna be a CnR server with a slightly RPG. List of the scripts needs work. Login UI DrugSystem GateSystem BaseSystem ShopRobbing Smartphone Intro of Server (most important work that has to be done) There are several other projects that i need help for and i got the resources and not skills, If you feel that you can do it, or even helping in anyway that you can i'm always here to reply. Feel free for any complains or suggestions. With Regards Deihim
-
Sounds great
- 7 replies
-
- intro
- cameramatrix
-
(and 2 more)
Tagged with:
-
inteporlateBetween * Thanks https://wiki.multitheftauto.com/wiki/Animate this one seems great
-
Hello I've seen many UI's That are animated checked out wiki didn't found anything, at least what i checked wasn't named properly. I'm wondering what function being used. With regards.
-
Great idea, i've been thinking about the same! It should be pretty easy with html. What did you used for capturing? GTA V Scene Director it self?
- 7 replies
-
- intro
- cameramatrix
-
(and 2 more)
Tagged with:
-
Hey Guys! I'm looking to learn how to make a intro. Already checked out the wiki figured it's done by functions like setCameraMatrix , etc... I want to make a scenario that a plane is landing on for example Ls Airport. And another scenario that you being chased by a cop vehicle. An example would really help a lot. With Regards.
- 7 replies
-
- intro
- cameramatrix
-
(and 2 more)
Tagged with:
-
Wow! nicely done, thanks. May i ask what caused it to not work?
-
i tried source before i post, but nothing happens
-
Hello Folks! I need some help here; Vehicles = { [468]=true,[577]=true } function enterVehicle ( player, seat, jacked ) if ( Vehicles[getElementModel(source)] ) then cancelEvent() warpPedIntoVehicle ( player, idk_what_to_put_here ) outputChatBox ( "OK!", player ) end end addEventHandler ( "onVehicleStartEnter", root, enterVehicle ) I want it to warp a player into specifics vehicles in attempt to enter.
-
oh didn't realized that but still nothing happens in attempt to enterVehicleStart
-
now i get this in client.log : [2017-07-15 10:21:18] WARNING: BigPlaneEnter\c_bigplane.lua:31: Bad argument @ 'bindKey' [Expected function at argument 3, got nil]
-
Hello people! I'm trying to write a script that allows player enter big planes like AT-400 without using a ladder. function warptovehicle () local id = getElementModel ( theVehicle ) if id == 577 then warpPedIntoVehicle ( thePlayer, theVehicle ) end end addEventHandler("onClientVehicleStartEnter",root,warptovehicle) [2017-07-14 08:00:42] WARNING: BigPlaneEnter\c_bigplane.lua:2: Bad argument @ 'getVehicleName' [Expected vehicle at argument 1, got nil] [2017-07-14 08:04:44] WARNING: BigPlaneEnter\c_bigplane.lua:2: Bad argument @ 'getElementModel' [Expected element at argument 1, got nil]
-
Hi people I've been looking for a way to make a Multilingual Resource that you could assign certain dialogs to for example a number. Let's say this a dialog in an external resource: triggerClientEvent(source, "makeMessage", root, "Your username/password was incorrect.", "Login Error") Now i want to assign a ID to this dialog "Your username/password was incorrect." that could be used to call it from Lang Resource. This is all i could figure out , i would really appreciate a solution. with regards
-
Hi Community i wrote this script for setting a specif player wanted level: function setWanted (source,cmd,wanted) local account = getPlayerAccount(source) if not account or isGuestAccount(account) then return end local accountName = getAccountName(account) if not isObjectInACLGroup("user."..accountName,aclGetGroup("Admin")) then return end exports["PoliceDatabase"]:setPlayerWanted(client,wanted) outputChatBox(..account.."Wanted Set To:"..wanted) end addCommandHandler ( "setwanted", setWanted ) and the Exported function: function setPlayerWanted(player, amount) and get this error:[2017-07-02 16:02:47] ERROR: Cmd\SetWanted\s_SetWanted.lua:7: attempt to concatenate global 'wanted' (a nil value)
-
Ok all of it solved now, i'm trying to show the timer to the player server side: function onPlayerTarget ( targetElem ) if isTimer(timer) then return end if targetElem == ped then setPedAnimation ( targetElem, "ped", "handsup",-1, false, false, false, true) local ran = math.random(1000, 2000) timer=setTimer(payPlayer, 5000, 1,source, ran) exports["Info"]:sendMessage(source, "Robbery Started!", 0, 92, 92) triggerClientEvent(source,root,"StartTheTimer") end end addEventHandler ( "onPlayerTarget", getRootElement(), onPlayerTarget ) and this is the client side: function clientTimer () theTimer = setTimer(function() end, 10000, 1) remaining, executesRemaining, totalExecutes = getTimerDetails(theTimer) local sWidth,sHeight = guiGetScreenSize() local minutes = remaining dxDrawText(..minutes,sWidth*0.95486, sHeight*0.81112, sWidth*0.00694, sHeight*0.01112,tocolor(160,160,160,255),0.6,"bankgothic","left","top",false,false,false) end addEvent ( "StartTheTimer", true ) addEventHandler ( "StartTheTimer", root, clientTimer ) i'm pretty sure somewhere something is wrong Error => [2017-07-02 11:52:01] WARNING: Rob\s_rob.lua:24: Bad argument @ 'triggerClientEvent' [Expected string at argument 2, got root]
-
ERROR: Server triggered clientside event sendPed, but event is not added clientside
-
ok now i have this problem, if you shoot the ped it drops dead and to prevent ped damage only option was clientside so i changed i to clientside: local shops = { {name="Clucking Bell", px=368.11337, py=-4.49257, pz=1001.85156, mx=368.12790, my=-6.02016, mz=1001.85156, dim=5, int=9, skin=167, rot=180}, } function cancelPedDamage (attacker) -- i added this to prevent damage but it's not working cancelEvent() end addEventHandler ( "onClientPedDamage", getRootElement(), cancelPedDamage ) function ped () for index, shop in pairs(shops) do ped = createPed(shop.skin, shop.px, shop.py, shop.pz) setElementInterior(ped, shop.int) setElementDimension(ped, shop.dim) setPedRotation(ped, shop.rot) setElementFrozen(ped, true) setElementData(ped,"shopPed",true) end end addEventHandler ( "onResourceStart", root , ped ) function onPlayerTarget ( targetElem ) if isTimer(timer) then return end if targetElem == ped then setPedAnimation ( targetElem, "ped", "handsup",-1, false, false, false, true) local ran = math.random(1000, 2000) timer=setTimer(payPlayer, 5000, 1,source, ran) exports["Info"]:sendMessage(source, "Robbery Started!", 0, 92, 92) end end addEventHandler ( "onPlayerTarget", getRootElement(), onPlayerTarget ) function payPlayer (source,ran) givePlayerMoney(source,ran) end but still ped dies. any solutions?
-
Wow Thanks , that did the Trick
-
This Error fixed: [2017-07-01 11:13:07] WARNING: Rob\s_rob.lua:22: Bad argument @ 'setPedAnimation' [Expected element at argument 1, got boolean] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- But still i receive this error and no money adds to player: [2017-07-01 17:42:30] WARNING: Rob\s_rob.lua:23: Bad argument @ 'givePlayerMoney' [Expected element at argument 1, got nil]