Jump to content

FWCentral

Members
  • Posts

    161
  • Joined

  • Last visited

Everything posted by FWCentral

  1. Hi Flying Spoon, it's unfortunate that you got a bad customer service rep and it's possible there was a language barrier between you after looking through the chat. If you visit our discord, you can find reviews from real customers and receive the right support and information you require. Our Live Chat Support staff are based from different parts of the world to ensure 24/7 support, but if your not happy with that support rep or there is any problem you can always ask for another. Servers are hosted through a dedicated server provider based in France. If you would like to test a server you can request one to be created for you to join and test your ping and if required test out the control panel and features included.
  2. Hello my previous topic got removed because of security concerns, so I wanted to post again properly. Smarty Hosting is a Professional Game Server Hosting Company and runs on the backbone of it's mother company SmartyXweb. We are a group of programmers from the UK, Tunisia & America who have built up our company over the past year. We used to be part of the MTA:SA community ourselves and ran our own RPG server around 6 years ago and a few of our staff have released resources for the MTA community too. All Ultimate Packages come with a Discord Nitro Until 12/09/2020. We are currently running a competition in our discord, for £50 credit in Smarty Hosting. To enter the competition visit our website and join the discord, you must invite at least 50 people to take part and then a selection will be made at random via live steam on the date shown in Discord. This notice will be removed once the competition ends and there will be 1 winner. We offer lots of different game servers, but the one we will focus on here is MTA:SA. All servers currently have 9th Gen Core i7 CPU's, Solid State Drives, Anti-DDoS Protected, Game Control Panel Ready and are hosted in a datacenter in France with low ping throughout the world even in places such as Northern Africa where the internet isn't very good. At least one of our staff aim to be online on the discord 24/7 to help with server support issues. You can also contact us directly using the phone number in our website or open a support ticket. After Payment Your Server is Automatically Created and MTA:SA Servers is installed and you can start playing/creating straight away. Plans & Prices can be found here: https://smartyhosting.com (Click MTA:SA or Direct Link) You can pay with E-Dinar, Paysafe Number (any country that uses them), Card/PayPal Payments (More Coming Soon) - We are trying to offer local payment gateways such as E-Dinar to certain countries to make game server hosting more accessible for people that can't usually pay. If you can only use local payments let us know and we will help you out. We also allow users to sign up as affiliates to make some money.
  3. Guys I said in the post I will update it later with more detail, thanks for the support from my old loyal team members.
  4. I don't use skype much, read the post I said I will not offer a price you must.
  5. Selling some scripts, contact me with how much you are willing to pay as I won't set a price. Some scripts need the other scripts to work, also I will update with more detail soon. All Sqlite based systems so no MySQL server required. Gang System: Set rank, set gang rights to invite kick set rank. Factions System: Invite players, set rank, set class, set faction rights to invite kick set rank and set class. Spawn System admins can create spawns for gangs only, factions only and normal players only easily with GUI. ATM system: Admins can add an ATM with easy command, player can click on the ATM's to access the bank (cannot deposit at ATM's) Vehicle System: Create vehicles, add gang vehicles, add faction vehicles, all will respawn back there when blown and after server restart etc. Most of these scrips was seen on FWCentral RPG server, there are more I have to sell but don't have time to write now like I said ill update this in more detail with images etc soon.
  6. If you mean with a weapon then https://community.multitheftauto.com/index.php?p= ... ails&id=57
  7. Ok what game mode are you using?
  8. executeSQLQuery There is examples on how to create a table and more there.
  9. The "onPlayerSpawn" event is triggered when the spawnPlayer function is used as far as im aware, so if your not using the spawnPlayer function it wont trigger the event. Post more of the script here or PM it too me.
  10. I don't quite understand, when you first spawn the player using spawnPlayer you then put the player in a vehicle? and now with this script you want to change the vehicle model to a random one? Please explain a bit more.
  11. Well do you want to use MySQL or the SQLite?
  12. http://bugs.mtasa.com/view.php?id=4571 If you didn't see that on the wiki, ETA: None We need to wait and sorry i can't say a specific time, i really want this too.
  13. addEventHandler ( "onPlayerSpawn", getRootElement(), function(thePlayer) -- [url=https://wiki.multitheftauto.com/wiki/OnPlayerSpawn]https://wiki.multitheftauto.com/wiki/OnPlayerSpawn[/url] the first parameter returned is the x position. local vehicle = getPedOccupiedVehicle ( thePlayer ) vehicles = {602, 545, 496, 517, 401, 410, 518, 600, 527, 436, 589, 580, 419, 439, 533, 549, 526, 491, 474, 445, 467, 604, 426, 507, 547, 585, 405, 587, 409, 466, 550, 492, 566, 546, 540, 551, 421, 516, 529,513, 581, 510, 509, 522, 481, 461, 462, 448, 521, 468, 463, 586, 485, 552, 431, 438, 437, 574, 420, 525, 408, 416, 596, 433, 597, 427, 599, 490,528, 601, 407, 428, 544, 523, 470, 598, 499, 588, 609, 403, 498, 514, 524, 423, 532, 414, 578, 443, 486, 515, 406, 531, 573, 456, 455, 459, 543, 422, 583, 482, 478, 605, 554, 530, 418, 572, 582, 413, 440, 536, 575, 534, 567, 535, 576, 412, 402, 542, 603, 475, 568, 557, 424, 471, 504, 495, 457, 483, 508, 571, 500, 444, 556, 429, 411, 541, 559, 415, 561, 480, 560, 562, 506, 565, 451, 434, 558, 494, 555, 502, 477, 503, 579, 400, 404, 489, 505, 479, 442, 458} vehicleid = tonumber(vehicles[math.random(#vehicles)]) setElementModel ( vehicle, vehicleid ) end ) In other words, change function(thePlayer) to function() and change anything else with thePlayer variable to "source"(without quotes).
  14. If he is using the same one that i was sent by another user(pretty sure it's on community or something), it's the TXD or DFF that is corrupt, Brolis just find another dff and txd, replace the old ones by renaming it to the same name as the old txd and dff and put it in the same folder, it will work fine with new ones.
  15. May be my eyes but i can't see where playerFraktion is defined. Put this under "local Spawn = getElementData( source, "Spawn" )" local playerFraction = getElementData(source, "Fraktion") or 0 also use Lua tags like: [lua] code [/lua] That was annoying to write sorry i couldn't find a better way.
  16. function hideGUI2() if (button2) then guiSetVisible (window,false) showCursor(false) end end addEvent("hideGUI2",true) addEventHandler("hideGUI2", getRootElement(), hideGUI2) addEventHandler("onClientGUIClick", getRootElement(), hideGUI2) -- See here you put getRootElement(), if you are going to do it like this then: function hideGUI2() if source == button2 then guiSetVisible (window,false) showCursor(false) end end addEvent("hideGUI2",true) addEventHandler("hideGUI2", getRootElement(), hideGUI2) addEventHandler("onClientGUIClick", getRootElement(), hideGUI2) Try that, just copy the bottom one not the top.
  17. Read Solidsnake14's post he is correct, sorry for jacking your topic
  18. Yeah that's exactly what i thought about the external server robhol, and yeah the SQLite server is on the same computer (the one built into MTA). Thanks for your info guys.
  19. Hey everyone, not too sure why but this won't change the color of the message if anyone can help: outputChatBox("Local OOC: "..getPlayerName(source)..": #FFFFFF"..message, nearbyPlayer, 0,102,221) No errors Just this in the chat: Local OOC: Name: #FFFFFFmessage
  20. Instead of me starting a new topic, im wondering what is better/faster MySQL or SQLite also what about an external MySQL server? (I would think external is much slower than any local)
  21. I can't use Skype because of bandwidth limits but nice to see you back on FWCentral And no problem, you too
  22. --buy flip elseif (object == "flip") then if (tonumber(playerCash) >= flipPrice) then if (isPedInVehicle ( source )) then local rx, ry, rz = getVehicleRotation ( getPedOccupiedVehicle(source) ) setVehicleRotation ( getPedOccupiedVehicle(source), 0, tonumber(ry), tonumber(rz) ) setTimer(outputChatBox,50,1,"* #FFFFFF"..getPlayerName (source).." #FFB200fliped his car for "..tostring(flipPrice).."$!",getRootElement(),unpack(scriptcol[1])) addStat(account, "cash", -flipPrice) else outputChatBox ("* You must sit in a car to flip it!",source,unpack(scriptcol[2])) cancelEvent() --e end --buy a random object infront of your car elseif (object == "object") then if (tonumber(playerCash) >= objectPrice) then if (isPedInVehicle(source)) then if not (getElementData(source, "hasObject") == "false") then objectid = math.random(1,23) addStat(account, "cash", -objectPrice) setElementData(source, "hasObject", "true") if objectid == 1 then objectSpawnAndKill(source, 1337) elseif objectid == 2 then Try that, might work
  23. What you are using there is the built in MTA account system. here's some functions you can use with the account system: --Functions: addAccount getAccountName getPlayerAccount getAccountPlayer getAccounts removeAccount setAccountPassword getAccountData setAccountData logIn logOut getAllAccountData --Events: onPlayerLogin onPlayerLogout I might have missed some, all this can be found in the wiki at https://wiki.multitheftauto.com All of the account functions are Server Side. More info about account's here: https://wiki.multitheftauto.com/wiki/Account if your making a script using account functions this is all your really need to know, i think SQLite is better for saving data but i still use the account functions for the players account.
  24. Hey xUltimate/Chris/Rockstar? not sure about the last name and don't know if you remember me. Anyways good luck with your server and i wish you the best with this new project, also i think everyone should just ignore rolling11 he's just some poor lonely kid who has nothing better to do.
×
×
  • Create New...