Leaderboard
Popular Content
Showing content with the highest reputation on 16/01/18 in Posts
-
Hey ! This is a "remake" of my old resource. It contain the classic mysteries from the singleplayer mod, "Misterix Mod" made by Zeb89 & Automan. ----> DOWNLOAD HERE <---- Updates: * General code changed * Added a special reward * Blips removed ( hidden mysteries ) * Mysteries can't swim * Nemesis's weapon changed * Removed Aliens and CJ's mother ( I will add them later ) * Fixed anti-escape error * Classic Models * Independent resource IMAGES:1 point
-
A primary security measure anyone with common sense would take: log everything. Absolutely everything. If you're a server owner, you know what you're dealing with; lots of players, lots of possible bugs and bad intentions. Yeah, they don't mix well. So, some time ago I have made this small and easy but really useful script which stores logs of whatever you want by just using an exported function. You won't have to worry about anything at all but the contents of the log , it creates a log if it does not exist, and if it exists the entry will appear at the next line. Each entry stores the time and date so you know when it all happened. You can choose to keep or to remove the color-codes, which is useful for chat logs or player names, for example. [SYNTAX] exports.easylogger:addLogEntry (text,logname[,removecolorcode]) - text: The text. - logname: The name of the log. - removecolorcode: Whether to remove colorcodes or not. Set to true to remove, false otherwise. [EXAMPLE] exports.easylogger:addLogEntry("Hello world!","logfile1") This would store the "Hello world!" text into a logfile called "logfile1.log". This has been very useful to me, I've catched plenty of people doing shady things like abusing a money system by tracking the transactions, the teamchat and localchat of my server. So, really hope it helps you too. Community download: https://community.multitheftauto.com/index.php?p=resources&s=details&id=151531 point
-
Thank you, I'm on a phone and a bit busy, hard to type or even thing of reasonable math. So thank you for fixing my code.1 point
-
موفق اخويً بس الي جالس اشوفهه كلها ابجكتات م اشوف شي جديدً واعتقد الدبابة والبرج وغيرها منشورين نبي نشوف شي جديد فكرة جديدة غير عن انك تقتل زومبي ويجيك اكس بي وفلوس كالباقي والمقصد تقوية للموضوع والسيرفر وليس استنقاص منك , الي في قلبي ع لساني - وانا جالس اشتغل على شي جديد ان شاء الله انه ينجح بقولك فكرته باختصار شبيه من التكتيك يصير تصويت على ماب ويخشون فرقة بشر وفرقة زومبي الزومبي لو يبقسو البشر راح يتحول البشري معهم زومبي , والبشري لو قتل زومبي راح تجيه شخصية غير وتجيه اسلحة غير ولفل ومن ذي الأشياء طبعا اشتغلت عليه 30% بالمية فقط . وبالتوفيق <31 point
-
1 point
-
1 point
-
function GhostMode(player) local account = getPlayerAccount(player) if (not account or isGuestAccount(account)) then return end local accountName = getAccountName(account) if isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "Moderator" ) ) or isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "Admin" ) ) then if getElementAlpha(player) == 255 then setElementAlpha(player,0) setPlayerNametagShowing(player,false) setPedWeaponSlot(player,0) outputChatBox("#ffffff[GHOSTMODE] #379bffYou have enabled the Ghost Mode.",player,255,255,255,true) else setElementAlpha(player,255) setPlayerNametagShowing(player,true) outputChatBox("#ffffff[GHOSTMODE] #379bffYou have disabled the Ghost Mode.",player,255,255,255,true) end end end addCommandHandler("g",GhostMode) function (player) for index, element in ipairs ( getAttachedElements ( player ) ) do if ( getElementType (element) == "blip" ) then destroyElement (element) end end end addCommandHandler("ghostmode",GhostMode) Oops, i forget the name of function1 point
-
Try MTA sa community all will get there ,for duel u can use my resource which I released go through community search for duel system and use it ,for sky fall use markers function and some stuffs like give money ,setxp etc.. Idk about most wanted I never tried it MTA community have all free roam resources1 point
-
1 point
-
Just imagine playing with a friend, killing raiders and bandits, looting, leveling up, helping each other out, just like a real on-line RPG. If the bots and the pickup system were enhanced and there was bigger playerbase overall, this would be my go-to server. For the rest, it is a living, breathing world to explore, and damn, it does really look like a mod straight out of those CLEO conversions. Good job, very good job.1 point
-
очень легко. нужно всего лишь заплатить владельцам ютуб каналов по мта больше чем им платят сейчас и его аудитория будет играть у вас.1 point
-
It clearly says that the truck isn't an element. Use the isElement function to check if the value of the elementdata is still an element. Because there are not elements saved in to the LUA memory. But reference to the elements are. Which means that if an element is the destroyed, the reference is not. So it keeps it's positive value. An if statement that only checks if the value is not or false will not work. This is the only way of validating elements that exist longer in-game. if isElement(variable) then1 point
-
موفقين ان شاء الله حاول تعمل افكار جديدة لانو لازم يكون في عنصر جذب بالسيرفر للزوار اتمنى لكم التوفيق1 point
-
local theTrailer = getElementData( thePlayer, "Trucker.trailer" ) destroyElement(theTrailer) You are saving the elementdata under the variable "theTrailer" and then you try to use destroyElement on an elementdata, which doesn't work since elementdata is not an element.1 point
-
np bro but i used it with dgseditor so i hope u make it back and the another one dgsDxGetMouseLeaveGUI1 point
-
it does return just 3, print just outputs both arguments it returns. local text = "test3test3" local num, count = text:gsub('test', '') print(num) --> 33 print(count) --> 21 point
-
1 point
-
function getPL(team) local t = { } local player = getPlayersInTeam(team) for i,v in pairs(player) do if not isPedDead(v) then table.insert(t,v) end end return t end function aSetPlayerFrozen( player, bool) if isElement( player ) then toggleAllControls ( player, not bool, true, false ) local vehicle = getPedOccupiedVehicle( player ) if vehicle then setElementFrozen ( vehicle, bool ) end end end local teamname = 'اسم التيم' addCommandHandler("freezeall", function(playerSource) if hasObjectPermissionTo(playerSource,"function.kickPlayer",true) then for i, v in ipairs(getPL(getTeamFromName(teamname))) do if getElementData(v,"frozenped") == "false" or not getElementData(v,"frozenped") then aSetPlayerFrozen ( v, true) setElementData(v,"frozenped","true") outputChatBox("FREEZE: #FFFFFFAll Players have been frozen by "..getPlayerName(playerSource).."!",v,255,0,0,true) else aSetPlayerFrozen ( v, false) setElementData(v,"frozenped","false") outputChatBox("FREEZE: #FFFFFFAll Players have been unfrozen by "..getPlayerName(playerSource).."!",v,255,0,0,true) end end else outputChatBox("FREEZE: #FFFFFFSorry, you do not have the ACL rights to freeze players!",playerSource,255,0,0,true) end end )1 point
-
Trust me this idea is not good at all smoke effects always lag players ,don't try this smoke things players will get laggy whenever they use hydra1 point
-
1 point
-
Hello, Everyone. Since DGS was released, DGS has been under development for over half year. What do you think about it? And new idea on DGS? Sadly, I will leave MTA this year, maybe in July. And all service will be suspended. At the same time DGS update system will be deleted in the final version in order to protect your dgs, which means DGS will no longer accept any update. Thanks for your support and company with DGS.1 point
-
You shouldn't get mad if someone steals your work, considering you stole it from owlgaming and modified 1%.1 point
-
1 point
-
Celebration of 100 Members Hello Everyone, We have reached 100 members about few days ago so our team decide to add more plan with more slots and space and of course with more slots and space there more posts required. 32-200 with different slots and space available on MTA:SA and SAMP. We have added 32-200 slots Plans in MTA:SA and SAMP gameServer. For more details: Click here Grab your Plan before Plans are out of stock. Read full announcement: Click here.1 point
-
Nothing you have done here is yours. This is, in fact, my old server, which was leaked by a rogue scripter who goes by the name of Maxxe. I created all of the mapping and features that isn't already Owl Gaming for this, along with my scripter Junx. Close up and make your own community. "BCRP is back and online!" Yeah no, it's not, this is fake.1 point
-
1 point
-
حدد نوع المقابل ( مادي ولا شيء أخر ) عشان ما تسحب المبرمجين لعندك في الأخير تقول المقابل واحد كونسل مع شطة xDDDDDDDDDDDDDDDDDDD1 point
-
Yea by Jan 20 we r starting 100-150 slots giveaway for free you can login on forum to get more updates we r added discord channel too for pirates hosting !1 point
-
0 points
-
Well people know it's stolen anyway. They just play to have fun and roleplay as much as they can. There's not much to do regarding leaked owl scripts anymore nowadays ;/0 points
-
0 points
-
0 points
