Jump to content

Bilal135

Members
  • Posts

    843
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Bilal135

  1. Better if you request to move this topic to Servers to play on. You'll notice a significant increase in your player base. The server seems totally amazing, I'll check it out later on. Your server's uptime is a bit worrying tho. Good luck!
  2. Hey buddies, I am a little confused here. Is there any difference between MTA: VC and Project Redivivus? Do they still have enough players to play with? Thank you.
  3. Someone told me you fap a lot.
  4. Assuming your question is how to disable warping, you can do that via admin panel. In the settings bar, find Freeroam, and set warp or somewhat to false. Players would not be able to warp to other players this way. Though, the map warping function will still work. Next time post your queries in the scripting section. This is a resource showcase board.
  5. A vehicle shop, and a customization shop would be nice. For instance, take a look at GTA V's Los Santos Customs. If you want to give it a free-ish style, then a menu that offers heavy vehicles, for example, hydra, tank. Moreover, implementing a drug system would be nice. A hunger system, where the player gets hungry as the hunger level increases. If no food is purchased, the player dies. There are a lot of cool money spending ideas. Just think where you spend money in real life, and implement it in game.
  6. Add this to the serverside and the error should disappear. addEvent("superman:stop", true)
  7. You can't get any good dedicated server within that amount. A perfect one might cost around $80 or more per month, which i guess you can't afford. I recommend ordering a server at 99stack and then buying a cheap domain at GoDaddy (they're offering a $1 .com domain, or if the offer has ended, I don't know).
  8. When the person clicks on Pershing Square item, the picture should appear on the specific coordinates. I tried different ways to do it so, but didn't work. Here's the client side: function centerWindow (center_window) local screenW, screenH = guiGetScreenSize() local windowW, windowH = guiGetSize(center_window, false) local x, y = (screenW - windowW) /2,(screenH - windowH) /2 return guiSetPosition(center_window, x, y, false) end addEvent("OnLogin", true) function onPlayerLogin() window = guiCreateWindow(495, 329, 1036, 418, "Flame Gaming: Spawn Manager", false) guiWindowSetSizable(window, false) guiSetAlpha(window, 0.90) label = guiCreateLabel(11, 25, 716, 19, "Select a spawn location and a skin.", false, window) gridlist = guiCreateGridList(10, 54, 409, 301, false, window) spawn_column = guiGridListAddColumn(gridlist, "Location", 0.9) for i = 1, 10 do guiGridListAddRow(gridlist) end guiGridListSetItemText(gridlist, 0, 1, "Willowfield (Docks)", false, false) guiGridListSetItemText(gridlist, 1, 1, "Vinewood Gas Station", false, false) guiGridListSetItemText(gridlist, 2, 1, "Verdant Bluffs Manor", false, false) guiGridListSetItemText(gridlist, 3, 1, "Santa Maria Beach", false, false) guiGridListSetItemText(gridlist, 4, 1, "Rodeo", false, false) guiGridListSetItemText(gridlist, 5, 1, "Pershing Square", false, false) guiGridListSetItemText(gridlist, 6, 1, "LS Conference Center", false, false) guiGridListSetItemText(gridlist, 7, 1, "Jefferson", false, false) guiGridListSetItemText(gridlist, 8, 1, "Idlewood Gas Station", false, false) guiGridListSetItemText(gridlist, 9, 1, "Grove Street", false, false) btn_spawn = guiCreateButton(10, 366, 131, 35, "Spawn", false, window) label_tip = guiCreateLabel(151, 376, 300, 15, "Tip: You MUST choose a skin and a location to spawn.", false, window) guiSetFont(label_tip, "default-bold-small") skin_gridlist = guiCreateGridList(429, 54, 179, 301, false, window) skin_column = guiGridListAddColumn(skin_gridlist, "Skin", 0.9) for i = 1, 33 do guiGridListAddRow(skin_gridlist) end guiGridListSetItemText(skin_gridlist, 0, 1, "Truth", false, false) guiGridListSetItemText(skin_gridlist, 1, 1, "Maccer", false, false) guiGridListSetItemText(skin_gridlist, 2, 1, "Tenpenny", false, false) guiGridListSetItemText(skin_gridlist, 3, 1, "Pulaski", false, false) guiGridListSetItemText(skin_gridlist, 4, 1, "Hern", false, false) guiGridListSetItemText(skin_gridlist, 5, 1, "Dwayne", false, false) guiGridListSetItemText(skin_gridlist, 6, 1, "Big Smoke", false, false) guiGridListSetItemText(skin_gridlist, 7, 1, "Sweet", false, false) guiGridListSetItemText(skin_gridlist, 8, 1, "Ryder", false, false) guiGridListSetItemText(skin_gridlist, 9, 1, "Forelli Guy", false, false) guiGridListSetItemText(skin_gridlist, 10, 1, "Rose", false, false) guiGridListSetItemText(skin_gridlist, 11, 1, "Kent Paul", false, false) guiGridListSetItemText(skin_gridlist, 12, 1, "Cesar", false, false) guiGridListSetItemText(skin_gridlist, 13, 1, "OG Loc", false, false) guiGridListSetItemText(skin_gridlist, 14, 1, "Wuzi Mu", false, false) guiGridListSetItemText(skin_gridlist, 15, 1, "Mike Toreno", false, false) guiGridListSetItemText(skin_gridlist, 16, 1, "Jizzy", false, false) guiGridListSetItemText(skin_gridlist, 17, 1, "Madd Dog", false, false) guiGridListSetItemText(skin_gridlist, 18, 1, "Catalina", false, false) guiGridListSetItemText(skin_gridlist, 19, 1, "Claude", false, false) guiGridListSetItemText(skin_gridlist, 20, 1, "Ryder", false, false) guiGridListSetItemText(skin_gridlist, 21, 1, "Ryder Robber", false, false) guiGridListSetItemText(skin_gridlist, 22, 1, "Emmet", false, false) guiGridListSetItemText(skin_gridlist, 23, 1, "Andre", false, false) guiGridListSetItemText(skin_gridlist, 24, 1, "Kendl", false, false) guiGridListSetItemText(skin_gridlist, 25, 1, "Jethro", false, false) guiGridListSetItemText(skin_gridlist, 26, 1, "Zero", false, false) guiGridListSetItemText(skin_gridlist, 27, 1, "T-bone Mendez", false, false) guiGridListSetItemText(skin_gridlist, 28, 1, "Sindaco Guy", false, false) guiGridListSetItemText(skin_gridlist, 29, 1, "Janitor", false, false) guiGridListSetItemText(skin_gridlist, 30, 1, "Big Bear", false, false) guiGridListSetItemText(skin_gridlist, 31, 1, "Big Smoke Vest", false, false) guiGridListSetItemText(skin_gridlist, 32, 1, "Physco", false, false) showCursor(true) if window then centerWindow(window) local row_spawn = guiGridListGetSelectedItem( gridlist ) local name_spawn = guiGridListGetItemText( gridlist , row_spawn, spawn_column) if name_spawn == "Pershing Square" then pershingsquare = guiCreateStaticImage(617, 55, 405, 300, "images/pershingsquare.png", false, window) end end end addEventHandler("OnLogin", resourceRoot, onPlayerLogin) function onClickButtonSpawn() if (source == btn_spawn) then local row_spawn = guiGridListGetSelectedItem( gridlist ) local name_spawn = guiGridListGetItemText( gridlist , row_spawn, spawn_column) local row_skin = guiGridListGetSelectedItem( skin_gridlist ) local name_skin = guiGridListGetItemText( skin_gridlist , row_skin, skin_column) if name_spawn == "Pershing Square" or name_spawn == "Idlewood Gas Station" or name_spawn == "Vinewood Gas Station" or name_spawn == "Grove Street" or name_spawn == "Santa Maria Beach" or name_spawn == "Verdant Bluffs Manor" or name_spawn == "Rodeo" or name_spawn == "Jefferson" or name_spawn == "Willowfield (Docks)" or name_spawn == "LS Conference Center" then triggerServerEvent("spawnPlayer", localPlayer, name_spawn, name_skin) guiSetVisible(window, false) end end end addEventHandler("onClientGUIClick", root, onClickButtonSpawn) Thanks in advance.
  9. This guy is really not trusted. So, he wanted to join my community as a DM server co owner. Later on, he brought our site down and Dosed my location. http://imgur.com/37O5iMr
  10. I can implement that but I am still thinking what about the house structure? What about a timer and a progress bar, and when it completes, the house would appear, but one from the MTA models. How's the idea?
  11. I dont know how but it is fixed. I reinstalled GTA and MTA.
  12. I bought a new PC - Core i7 6th generation desktop. I copied GTA SA from my previous laptop to the desktop, and when I run MTA SA, it gives an error: Wrong volume is in the drive. Please insert Volume Assistant 2015 into Drive :F. My drive :F is the CD Rom. Though MTA still starts up but I am redirected to desktop every 3 seconds and it doesn't let me play. Any fix for this please?
  13. Correct me if I am wrong but I guess he hosts all of the servers on two VPS's, which are not enough to host 30s of MTA servers. Their support system is really pathetic, I won't suggest to use their services. Peace out.
  14. Why compiled? I wanted to learn something from the code, and found out it is compiled.
  15. Where will your hired advertisers advertise? On other servers? You do realize that many servers (almost all) do not permit advertising, and so you are asking them to break rules of other servers to get players. Let me tell you, you won't get a player base by advertising on other servers, or even if you get a few, those will be "kids" demanding admin rights and if you deny, they will leave. Believe me, I have experimented this. If you want a mature community, let the players come themselves, and, you can create your own advertising topic of your server on MTA SA forums, and if people liked it, then you will surely get a playerbase.
  16. Still didn't get you, tried many ways but couldn't make it work. I am sorry but if you can fix the code for me, that will help me a lot to understand how things like this have to be done.
  17. Can you edit my code for me so I can understand properly?
×
×
  • Create New...