-
Posts
749 -
Joined
-
Last visited
-
Days Won
1
Everything posted by FlyingSpoon
-
[WIP][SHOW] Apocalypse, in a Car, with Zombies!
FlyingSpoon replied to [PXG]Blue's topic in Resources
Haha, It's BeaTzZ <3 I loved scripting for you Bro! -
Used your Elegant theme : D Really, great - Also suggested to a few of my friends.
-
Using it right now, great theme! It will look good when I take little snippets for future events : D
-
Loving the new interface and work, A lot of bugs fixed also!
-
Love it, I really like how you used the Dx Good Luck!
-
[WIP][SHOW] Apocalypse, in a Car, with Zombies!
FlyingSpoon replied to [PXG]Blue's topic in Resources
Looks awesome, tested it No bugs that I am aware of! -
APEX GameServers | Low-Cost, Low Ping, Anti-DDoS
FlyingSpoon replied to APEX Mark's topic in Hosting solutions
Great host, Bought a 50 Slots server with them, So far all good c: Hope no problems occur! Fast, Great Pings for my players & Fast Replies. -
Great! Hope more updates soon
-
RaysMTA.eu - FREE Gameserver handout!
FlyingSpoon replied to FlyingSpoon's topic in Hosting solutions
Might redo in future -
Lol, ty I guess
-
Still nothing
-
Where can I find, MTAServer.conf, ACL.xml for these resources?
-
Hi there, I decided to create another script I decided to make, might be a little weaker or in other words worse, as I made it completely from scratch and spent a good 3 Hours or more on it. In my own words I have achieved what I wanted to, and it works good as far as I know, if you find any bugs let me know so I can fix it. -- [b]Functions[/b] -- - Find '[b]Ped[/b]' in Los Santos, located at '[b]Blip 56[/b]' and you can visit the local Farmer, Farmer Lary. - You can accept or decline the job if you want, and it will output a message for accept/decline. - If you exit vehicle, in 5 Seconds, it will explode, ( Prevent spamming of vehicles ), and marker will disappear. - Markers spawn at certain areas and you must deliver the goods, once delivered you will receive different amounts of pay and it will play music. Resource LIVE @ https://community.multitheftauto.com/index.php?p= ... s&id=11154 ( Sorry, if this script is no use to the community I am just trying to work on my LUA Skills & Development so I can create larger systems in the future and become a successful programmer )
-
Hi there, As it was my birthday yesterday ( 12/03/2015 ) I thought I would do something that would put my mind further and help me think bigger. So I decided to grab a resource from the community and edit it and give it a new look, and develop the system further. So I chose @seb:> great basic VIP Resource, and I developed on it for a good 1 Day and a half. So the outcome wasn't what I expected and you might find better resources on the MTA Community, But personally myself, I think I achieved something great! I also fixed up a few GUI's of the resource and removed 2 bugs which I found, so far this is my first release of this resource. I might develop it more and release a newer version with more features. Below you can see what I have done! Resource LIVE @ https://community.multitheftauto.com/index.php?p ... s&id=11145 -- [b]Resource Information & Commands[/b] -- Firstly, credits go to [b]seb:>[/b] for making this resource public for the community as it's a really nice pleasure to see such hard work put into the community to help others! [b]/addvip accountName hours[/b] - You need to be an admin/have banPermission to access this command. [b]/removevip accountName[/b] - You need to be admin/have banPermission to access this command. [b]/viponline[/b] - I edited this GUI and changed and changed command, you will be able to see visible VIP's and how long they have left, again requires admin/banPermission to access the command. [b]/vip[/b] - Main command I made from complete scratch, and to access this you need to be a VIP, and a nice GUI will appear and you will have access to many features. [b]/viptime[/b] - This allows you to check how long you have until your VIP expires. Images /vip - This is the main GUI I created and worked on for a while to get things working! /viponline - This is the GUI I edited and made a few changes to! VIP Skins
-
but I tried all txd's why all come out same.. When I try with modloader it works? Can someone help.
-
function skins () skinsz = engineLoadTXD("goku.txd") engineReplaceModel(skinsz, 189 ) skinsz2 = engineLoadDFF("goku.dff") engineReplaceModel(skinsz2, 189 ) end addEventHandler( "onClientResourceStart", resourceRoot, skins ) But the skins come out white instead of the actual skin, whole skin is white, I tried on all skin mods.
-
Bad argument @ 'getPedOccupiedVehicle' [Expected ped at argument 1, got nil] Bad argument @ 'fixVehicle' [Expected element at argument 1, got boolean] addEvent ( "repairVeh", true ) function repairVeh ( thePlayer ) local theVehicle = getPedOccupiedVehicle ( thePlayer ) fixVehicle ( theVehicle ) end addEventHandler ( "repairVeh", root, repairVeh )
-
function repairVeh ( thePlayer ) local theVehicle = getPedOccupiedVehicle ( thePlayer ) fixVehicle ( theVehicle ) end addEvent("repairVeh", true) addEventHandler("repairVeh", root, repairVeh) Whenever I trigger this event client side - it outputs this - [2015-03-13 10:36:04] WARNING: vip\server.lua:160: Bad argument @ 'getPedOccupiedVehicle' [Expected ped at argument 1, got root]
-
Thanks MADE luv ya' all <33 ( NO HOMO )
-
Thank you <33 @JR10 @darhal Btw JR10, I love your work that you produce!
-
Well, I still kind of suck at LUA, but as I want to move onto learning LUA more, and I have enough time and can guarantee my self I can learn it. Any links available? I would like a full LUA Tutorials, if possible with pictures?
-
local safeMoney = createColRectangle ( 2026.2687, -1421.8105, 16.9921, 255 ) local safePlayers = getElementsWithinColShape ( safeMoney, "player" ) function sMoney() if source == safeMoney then givePlayerMoney ( safePlayers, 50 ) end end addEventHandler ( "onColShapeHit", root, sMoney ) setTimer ( sMoney, 10000, 1 ) I came up with this, but it don't work.
-
local x,y,z = 1550, -1668, 13 function giveMoney() setTimer ( function() if source == x,y,z then setPlayerMoney(100) end, 5000, 1 ) end giveMoney() I want player to be at LSPD, around a certain area, and every 5 Seconds, they will get 100$. Can anyone help?