-
Posts
4,961 -
Joined
-
Last visited
Everything posted by Jaysds1
-
RAM: 2GB Hard Drive: 148 GB Processor: Intel Core 2 Duo CPU @2.53 GHz Video: Intel
-
Nice to see MTA is getting a new make over in different areas! Great job Devs.
-
This theme looks very artistic and professional. Nice!
-
* Sorry for the double post! Ok, so I've added an edit button; an option to strike-out the item or to remove it from their system; and also a settings side menu.
-
It should as their's no point of it after being compiled...
-
https://www.research.net/s/pivotalperspectives
-
Hey, Do you still have this phone?
-
0 server found (backup server list)
Jaysds1 replied to Dustymetro's topic in Site/Forum/Discord/Mantis/Wiki related
No problem man, I can see it has worked. -
I see what you're saying I will make it simpler then, thanks for that suggestion
-
0 server found (backup server list)
Jaysds1 replied to Dustymetro's topic in Site/Forum/Discord/Mantis/Wiki related
Here's a site that could help (Don't download anything they want you too): http://portforward.com/english/routers/ ... rindex.htm Choose your router from the list and they would show you how to access the port forward page, then they would redirect you to a list of programs that has ports numbered to the right for people wanting to port forward them. -
Well as for the "struck button", I put as when the site loads up you could click on what you have finished and it'll be struck-out and deleted from their device. Thanks for the "edit button" idea though.
-
0 server found (backup server list)
Jaysds1 replied to Dustymetro's topic in Site/Forum/Discord/Mantis/Wiki related
If you could connect to the internet and not find any servers on the MTA Server Browser then that means you would probably need to port forward some ports. If you could see this page then you should be able to see servers on your MTA Server Browser. http://master.multitheftauto.com/ase/mta/ -
http://yours-todo.tk
-
Hey all, I just wanted an all-around opinion and suggestion on my new website I'm working on. https://yours-todo.tk As you can see, the website is a to-do list for anyone that thinks they can't keep things on track or has a lot to do either on the road or in the house. The main thing for the site is kind of done, but it's up to me to expand on the whole thing, which I would need ideas for. Now my plan was to add a little sign-in/sign-up feature for people who would want to carry their to-do lists from different platforms to different devices, but I would still need to know if it's a good idea too. Any opinion, suggestion, reports about problems/bugs is helpful! Thanks.
-
I know, I just wanted to know if Java could be used to create a Module for MTA. Thanks tho
-
What about Java?
-
ID: User: Email: Address: City: State/Province: Country: Last Used IP: Account Created: Account Last Modified: Account Last Online: ID: User: Email: Address: City: State/Province: Country: Last Used IP: Account Created: Account Last Modified: Account Last Online: <? $_q = $_sql->query('SELECT * FROM accounts'); while($a = $_q->fetch_object()) echo " {$a->id} {$a->user} {$a->email} {$a->address} {$a->city} {$a->state} {$a->country} {$a->ip} {$a->created} {$a->modified} {$a->laston} "; $_q->free_result(); ?>
-
I heard Vortex Servers are good with hosting servers, not sure about Delux Host
-
Yea, they are
-
Please use the [/lua][/lua] bbcode tags and indent your code. *Take away the first /. Try this: addEvent ("viewGUI", true) function showGui (player) triggerClientEvent ("viewGUI", player) end addCommandHandler("shop",showGui) addEvent ("weapBuy", true) addEventHandler ("weapBuy", getRootElement(), function(id, cost, name, ammo) local accName = getAccountName ( getPlayerAccount ( source ) ) -- get his account name if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then giveWeapon(source, tonumber(id),1000) else if (getPlayerMoney (source) >= tonumber(cost)) then outputChatBox ("You Bought a " .. name, source, 255, 0, 0, false) outputChatBox ("ID: " .. id, source, 255, 0, 0, false) outputChatBox ("Cost: " .. cost, source, 255, 0, 0, false) takePlayerMoney (source, tonumber (cost)) giveWeapon(source, tonumber(id),1000) else outputChatBox ("You are too poor!", source, 255, 0, 0, false) end end end ) addEvent ("carBuy", true) addEventHandler ("carBuy", getRootElement(), function(id2, cost2, name2,x, y, z, sRz) local accName = getAccountName ( getPlayerAccount ( source ) ) -- get his account name if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then local x,y,z = getElementPosition (source) local vehicle = createVehicle (id2, x, y, z, 0, 0, sRz ) warpPedIntoVehicle(source, vehicle) else if (getPlayerMoney (source) >= tonumber(cost2)) then outputChatBox ("Bought a " .. name2, source, 255, 0, 0, false) outputChatBox ("ID: " .. id2, source, 255, 0, 0, false) outputChatBox ("Cost: " .. cost2, source, 255, 0, 0, false) takePlayerMoney (source, tonumber (cost2)) local x,y,z = getElementPosition (source) local vehicle = createVehicle (id2, x, y, z, 0, 0, sRz ) warpPedIntoVehicle(source, vehicle) else outputChatBox ("You are too poor!", source, 255, 0, 0, false) end end end ) function vExplode () toggleVehicleRespawn ( source, false ) setTimer(destroyElement, 5000, 1, source) end addEventHandler ( "onVehicleExplode", getResourceRootElement(getThisResource()), vExplode ) --Thanks to TapAz for the code {Found at MTA Wiki} function switch(arg) if(type(arg)~="table")then return switch end local switching, default, done; --Default is nil if(tostring(arg[1]):len()<=2)and(tostring(arg[2]):len()<=2)then switching=arg[1] end table.remove(arg, 1); for i=1, #arg do if(tostring(arg[i]):len()<=3)and(arg[i]==switching)then if(type(arg[i+1])=="function")then pcall(arg[i+1]) done=true; break else break end end if(arg[i]==nil)and(arg[i]==switching)and(type(arg[i+1])=="function")then pcall(arg[i+1]) end end if(not done)then print("No action.") end end function skillBuyPlayer (cash,player,id) --Make sure the function is first before trying to call it if (getPlayerMoney (player) >= cash) then takePlayerMoney (player,cash) setPedStat(player, id, 1000) else outputChatBox ("You are too poor!", player, 255,0,0) end end function skillButton (id, cost) switch { tonumber(id); 0,skillBuyPlayer(1000000,source,69), 1,skillBuyPlayer(1000000,source,70), 2,skillBuyPlayer(1000000,source,71), 3,skillBuyPlayer(1000000,source,72), 4,skillBuyPlayer(1000000,source,73), 5,skillBuyPlayer(1000000,source,74), 6,skillBuyPlayer(1000000,source,75), 7,skillBuyPlayer(1000000,source,76), 8,skillBuyPlayer(1000000,source,77), 9,skillBuyPlayer(1000000,source,78), 10,skillBuyPlayer(1000000,source,79), 11,skillBuyPlayer(1000000,source,24), 12,skillBuyPlayer(50000,source,23), 13,skillBuyPlayer(25000,source,21), } end addEvent ("skillBuy", true) addEventHandler ("skillBuy", getRootElement(),skillButton)
