
Swagy
Members-
Posts
91 -
Joined
-
Last visited
Everything posted by Swagy
-
@Necktrox can you please tell me how to use onDiscordUserCommand event? what are the arguments that I can use?
-
these are leaked CIT resources, stop giving it dude..
-
Can you check your PM? I don't know how to upgrade.
-
my version is 0.10.29 @Necktrox
-
Here is the SSH console @Necktrox v0.10.29 this is my version
-
I'm using the latest one @Necktrox
-
@Necktrox I was running your JS on my Debian 8 machine, but I got 2 Errors, the first was solved thanks to Luca, the second one, isn't fixed which is: SyntaxError: Unexpected Identifier. at Module._compile (module.js:439:25) at Object.Module._extensions (module.js:470:10) at Module.load (module.js:356:32) ...etc what to do?
-
Well, I'm moderating a facebook page, and I want to advert for it, so I need money I decided to work as a developer in some communities and earn money, I simply request 5$ for now, I mean, I'll work on what you want starting from 5$, if you want a hard work, price will be upper and so on.
-
Add me on skype: blid-boy93 I can do some great things.
-
[LF] Developers [Paid/Non-paid] - Dark Moon Community
Swagy replied to marty000123's topic in Looking for staff
I can work if you'll pay me. -
I'm interested, add me on skype: blid.boy93
-
[LF] Experienced scripter for hardcore RP Server [PAID]
Swagy replied to Terminator's topic in Looking for staff
I'm ready to work on anything you suggest from 5$ contact me on skype: blid.boy93 -
--[[ -- Resource Name: Information. -- Author: Om (RipeMangoes69) -- Date: 4/12/2016 -- File: client.lua ]]-- -- GUI GUIEditor = { window = {}, label = {}, memo = {} } GUIEditor.window[1] = guiCreateWindow(645, 250, 266, 378, "Information: " .. m.area, false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1], false) GUIEditor.label[1] = guiCreateLabel(5, 353, 190, 15, "* Click anywhere on GUI Window to close it.", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "default-small") GUIEditor.memo[1] = guiCreateMemo(9, 24, 247, 324, "", false, GUIEditor.window[1]) guiMemoSetReadOnly(GUIEditor.memo[1], true) local markers = {} function createInfoObjects() local markers = { {area = "Los Santos Airport", x = 1582.45, y = -2286.32, z = 12}, {area = "Las Vegas Airport", x = 1674.30859375, y = 1444.9501953125, z = 9.2} } for i, m in ipairs(markers) do local marker = createMarker(m.x, m.y, m.z, "cylinder", 1, 255, 255, 255, 100) markers[marker] = i end end addEventHandler("onClientResourceStart", getRootElement(), createInfoObjects) function openGUI( hitElement, matchingDimension ) if getElementType( hitElement ) == "player" and markers[source] then if isPedInVehicle(hitElement) then outputChatBox("You cannot access GUI from vehicle!", 255, 0, 0) guiSetVisible(GUIEditor.window[1], false) showCursor(false) else guiSetVisible(GUIEditor.window[1], true) guiSetText(GUIEditor.window[1],makers[source]["area"]) showCursor(true) end end end addEventHandler("onClientMarkerHit", resourceRoot, openGUI) function closeGUI() guiSetVisible(GUIEditor.window[1], false) showCursor(false) end addEventHandler("onClientGUIClick", resourceRoot, closeGUI)
-
Well, I don't have material or idk, how to fix this? I don't know what's the material? I just want to add a new TXD file to a vehicle, is that possible?
-
Well, I want to make some skin TXDs for some donators; example; local skinShaders = { ["blid1"] = {"infernus.txd", "Infernus"}, } and I want to make this table if k == getAccountName(acc) then EngineApplyShaderToWorldTexture. end I want to enable the mod only for that person, but everyone can see it, any help?
-
Not even cool scripts, in the job system try to use setBlipVisibleDistance (element, distance) for a better view..
-
https://wiki.multitheftauto.com/wiki/GuiRadioButtonGetSelected use this It's like this try it.
-
Try using "if guiRadioBoxGetSelected (radiobox) == true then.." and add you code Try using wiki so you get the right function.