Dealman Posted January 31, 2015 Share Posted January 31, 2015 Rather than accusing one another and calling names, if you do find it suspicious, you're probably just better of reporting the thread and letting a moderator look into it. No-one cares about you comparing your e-peen sizes, there was nothing other than childish arguments in this thread. Link to comment
Johnny Killstone Posted January 31, 2015 Share Posted January 31, 2015 Rather than accusing one another and calling names, if you do find it suspicious, you're probably just better of reporting the thread and letting a moderator look into it.No-one cares about you comparing your e-peen sizes, there was nothing other than childish arguments in this thread. Hard to report without evidence but after a closer look it seems they are all right with the accusations, he tries to sell stolen scripts, not all of them but there are stolen work in there, and that's bad enough. Just compare the client files downloaded from his server on join with the original community resource. client.lua (from his demo server) --------------------------------------------------------------------------------------- -- Name: Fastfood -- Developer: ReVal -- Last edit: 2015 -- License: GNU (General public license) --------------------------------------------------------------------------------------- GUIEditor_Window = {} GUIEditor_Button = {} x,y = guiGetScreenSize() GUIEditor_Window[1] = guiCreateWindow((x-320)/2, (y-297)/2, 320, 297, "BCG Stacked Pizza", false ) guiWindowSetSizable(GUIEditor_Window[1],false) guiSetVisible(GUIEditor_Window[1],false) GUIEditor_Button[1] = guiCreateButton(210,257,100,36,"Close",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(10,100,160,36, "Buster ("..prices[1].."$)",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(10,217,160,36, "Double D-Luxe ("..prices[2].."$)",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(170,100,160,36, "Full rack ("..prices[3].."$)",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(170,217,160,36, "Sallad meal ("..prices[4].."$)",false,GUIEditor_Window[1]) function showGUI( hitPlayer, type ) if type == "cluckin_bell" then guiSetText ( GUIEditor_Window[1], "Cluckin' Bell Menu" ) guiSetText ( GUIEditor_Button[2], "Cluckin' Little Meal ("..prices[1].."$)" ) guiSetText ( GUIEditor_Button[3], "Cluckin' Big Meal ("..prices[2].."$)" ) guiSetText ( GUIEditor_Button[4], "Cluckin' Huge Meal ("..prices[3].."$)" ) guiSetText ( GUIEditor_Button[5], "Salad Meal ("..prices[4].."$)" ) -- menu images if img1 and isElement(img1) then destroyElement(img1) end if img2 and isElement(img2) then destroyElement(img2) end if img3 and isElement(img3) then destroyElement(img3) end if img4 and isElement(img4) then destroyElement(img4) end img1 = guiCreateStaticImage( 10, 23, 160, 77, "img/CLUHEAL.png", false, GUIEditor_Window[1] ) img2 = guiCreateStaticImage( 10,140, 160, 77, "img/CLUHIG.png", false, GUIEditor_Window[1] ) img3 = guiCreateStaticImage( 170, 23, 160, 77, "img/CLULOW.png", false, GUIEditor_Window[1] ) img4 = guiCreateStaticImage( 170, 140, 160, 77, "img/CLUMED.png", false, GUIEditor_Window[1] ) elseif type == "burger" then guiSetText ( GUIEditor_Window[1], "Burger Shot Menu" ) guiSetText ( GUIEditor_Button[2], "Moo kids Meal ("..prices[1].."$)" ) guiSetText ( GUIEditor_Button[3], "Beef Tower Meal ("..prices[2].."$)" ) guiSetText ( GUIEditor_Button[4], "Meat Stack Meal ("..prices[3].."$)" ) guiSetText ( GUIEditor_Button[5], "Salad Meal ("..prices[4].."$)" ) -- menu images if img1 and isElement(img1) then destroyElement(img1) end if img2 and isElement(img2) then destroyElement(img2) end if img3 and isElement(img3) then destroyElement(img3) end if img4 and isElement(img4) then destroyElement(img4) end img1 = guiCreateStaticImage( 10, 23, 160, 77, "img/BURHEAL.png", false, GUIEditor_Window[1] ) img2 = guiCreateStaticImage( 10, 140, 160, 77, "img/BURHIG.png", false, GUIEditor_Window[1] ) img3 = guiCreateStaticImage( 170, 23, 160, 77, "img/BURLOW.png", false, GUIEditor_Window[1] ) img4 = guiCreateStaticImage( 170, 140, 160, 77, "img/BURMED.png", false, GUIEditor_Window[1] ) else if img1 and isElement(img1) then destroyElement(img1) end if img2 and isElement(img2) then destroyElement(img2) end if img3 and isElement(img3) then destroyElement(img3) end if img4 and isElement(img4) then destroyElement(img4) end img1 = guiCreateStaticImage( 10, 23, 160, 77, "img/PIZHEAL.png", false, GUIEditor_Window[1] ) img2 = guiCreateStaticImage( 10, 140, 160, 77, "img/PIZHIG.png", false, GUIEditor_Window[1] ) img3 = guiCreateStaticImage( 170, 23, 160, 77, "img/PIZLOW.png", false, GUIEditor_Window[1] ) img4 = guiCreateStaticImage( 170, 140, 160, 77, "img/PIZMED.png", false, GUIEditor_Window[1] ) end guiSetVisible ( GUIEditor_Window[1], true ) showCursor( true ) end addEvent("fastfood.showGUI",true) addEventHandler("fastfood.showGUI",getRootElement(),showGUI) function hideGUI() guiSetVisible ( GUIEditor_Window[1], false ) showCursor( false ) end addEvent("fastfood.hideGUI",true) addEventHandler("fastfood.hideGUI",getRootElement(),hideGUI) addEventHandler("onClientGUIClick",getRootElement(), function ( player ) local player2 = getLocalPlayer() local money = getPlayerMoney ( player2 ) if (source == GUIEditor_Button[1]) then guiSetVisible (GUIEditor_Window[1],false) showCursor (false) elseif (source == GUIEditor_Button[2]) then if (money > prices[1]) and not isTimer (cooldown) then triggerServerEvent( "buy.Hamburger", getLocalPlayer(), prices[1], health[1] ) cooldown = setTimer (function () end, 500, 1) end elseif (source == GUIEditor_Button[3]) then if (money > prices[2]) and not isTimer (cooldown) then triggerServerEvent( "buy.Hamburger", getLocalPlayer(), prices[2], health[2] ) cooldown = setTimer (function () end, 500, 1) end elseif (source == GUIEditor_Button[4]) then if (money > prices[3]) and not isTimer (cooldown) then triggerServerEvent( "buy.Hamburger", getLocalPlayer(), prices[3], health[3] ) cooldown = setTimer (function () end, 500, 1) end elseif (source == GUIEditor_Button[5]) then if (money > prices[4]) and not isTimer (cooldown) then triggerServerEvent( "buy.Hamburger", getLocalPlayer(), prices[4], health[4] ) cooldown = setTimer (function () end, 500, 1) end end end) data.lua --------------------------------------------------------------------------------------- -- Name: Fastfood -- Developer: ReVal -- Last edit: 2015-1-29 -- License: GNU (General public license) --------------------------------------------------------------------------------------- -- Markers inside to buy fast food markers = { -- x, y, z, dimension, interior, type, storeLocation -- BCG stacked pizza [1]={ 373.9, -118.8, 1000.4, 5, 5, "pizza" }, [2]={ 373.9, -118.8, 1000.4, 11, 5, "pizza" }, [3]={ 373.9, -118.8, 1000.4, 10, 5, "pizza" }, [4]={ 373.9, -118.8, 1000.4, 9, 5, "pizza" }, [5]={ 373.9, -118.8, 1000.4, 7, 5, "pizza" }, [6]={ 373.9, -118.8, 1000.4, 6, 5, "pizza" }, [7]={ 373.9, -118.8, 1000.4, 4, 5, "pizza" }, [8]={ 373.9, -118.8, 1000.4, 0, 5, "pizza" }, [9]={ 373.9, -118.8, 1000.4, 1, 5, "pizza" }, [10]={ 373.9, -118.8, 1000.4, 8, 5, "pizza" }, -- Cluckin' Bell [11]={ 369, -6, 1000.8515625, 2, 9, "cluckin_bell" }, [12]={ 369, -6, 1000.8515625, 1, 9, "cluckin_bell" }, [13]={ 369, -6, 1000.8515625, 5, 9, "cluckin_bell" }, [14]={ 369, -6, 1000.8515625, 9, 9, "cluckin_bell" }, [15]={ 369, -6, 1000.8515625, 10, 9, "cluckin_bell" }, [16]={ 369, -6, 1000.8515625, 11, 9, "cluckin_bell" }, [17]={ 369, -6, 1000.8515625, 8, 9, "cluckin_bell" }, [18]={ 369, -6, 1000.8515625, 6, 9, "cluckin_bell" }, [19]={ 369, -6, 1000.8515625, 7, 9, "cluckin_bell" }, [20]={ 369, -6, 1000.8515625, 4, 9, "cluckin_bell" }, [21]={ 369, -6, 1000.8515625, 3, 9, "cluckin_bell" }, [22]={ 369, -6, 1000.8515625, 0, 9, "cluckin_bell" }, -- Burger shot [23]={ 375.6, -67.5, 1000.5, 0, 10, "burger" }, [24]={ 375.6, -67.5, 1000.5, 1, 10, "burger" }, [25]={ 375.6, -67.5, 1000.5, 5, 10, "burger" }, [26]={ 375.6, -67.5, 1000.5, 6, 10, "burger" }, [27]={ 375.6, -67.5, 1000.5, 7, 10, "burger" }, [28]={ 375.6, -67.5, 1000.5, 8, 10, "burger" }, [29]={ 375.6, -67.5, 1000.5, 9, 10, "burger" }, [30]={ 375.6, -67.5, 1000.5, 2, 10, "burger" }, [31]={ 375.6, -67.5, 1000.5, 3, 10, "burger" }, [32]={ 375.6, -67.5, 1000.5, 4, 10, "burger" }, -- Drive thru's at the end [33]={ 1214, -905, 41.922645568848, 0, 0, "burger" }, [34]={ 799.91015625, -1629.6396484375, 12.109879493713, 0, 0, "burger" }, [35]={ 2376.5595703125, -1906.7158203125, 12.3828125, 0, 0, "cluckin_bell" }, [36]={ 2411.6103515625, -1487.3779296875, 22.555204391479, 0, 0, "cluckin_bell" }, [37]={ -2352.6015625, -156.41796875, 34.945182800293, 0, 0, "burger" } } -- Blips are client sided: using custom blips resource -- Peds behind the desk to sell peds = { -- x, y, z, dimension, interior, rotation, skinID, name of store -- BCG stacked pizza [1]={ 373.8, -117.27, 1000.4, 5, 5, 180, 155, "Well Stack Pizza Co. (Idlewood)" }, [2]={ 373.8, -117.27, 1000.4, 11, 5, 180, 155, "Well Stack Pizza Co." }, [3]={ 373.8, -117.27, 1000.4, 10, 5, 180, 155, "Well Stack Pizza Co." }, [4]={ 373.8, -117.27, 1000.4, 9, 5, 180, 155, "Well Stack Pizza Co." }, [5]={ 373.8, -117.27, 1000.4, 7, 5, 180, 155, "Well Stack Pizza Co." }, [6]={ 373.8, -117.27, 1000.4, 6, 5, 180, 155, "Well Stack Pizza Co." }, [7]={ 373.8, -117.27, 1000.4, 4, 5, 180, 155, "Well Stack Pizza Co." }, [8]={ 373.8, -117.27, 1000.4, 0, 5, 180, 155, "Well Stack Pizza Co." }, [9]={ 373.8, -117.27, 1000.4, 1, 5, 180, 155, "Well Stack Pizza Co." }, [10]={ 373.8, -117.27, 1000.4, 8, 5, 180, 155, "Well Stack Pizza Co." }, -- Cluckin' Bell [11]={ 369, -4.4, 1001.8, 2, 9, 180, 167, "Cluckin' Bell" }, [12]={ 369, -4.4, 1001.8, 1, 9, 180, 167, "Cluckin' Bell" }, [13]={ 369, -4.4, 1001.8, 5, 9, 180, 167, "Cluckin' Bell" }, [14]={ 369, -4.4, 1001.8, 9, 9, 180, 167, "Cluckin' Bell" }, [15]={ 369, -4.4, 1001.8, 10, 9, 180, 167, "Cluckin' Bell" }, [16]={ 369, -4.4, 1001.8, 11, 9, 180, 167, "Cluckin' Bell" }, [17]={ 369, -4.4, 1001.8, 8, 9, 180, 167, "Cluckin' Bell" }, [18]={ 369, -4.4, 1001.8, 6, 9, 180, 167, "Cluckin' Bell" }, [19]={ 369, -4.4, 1001.8, 7, 9, 180, 167, "Cluckin' Bell" }, [20]={ 369, -4.4, 1001.8, 4, 9, 180, 167, "Cluckin' Bell" }, [21]={ 369, -4.4, 1001.8, 3, 9, 180, 167, "Cluckin' Bell" }, [22]={ 369, -4.4, 1001.8, 0, 9, 180, 167, "Cluckin' Bell" }, -- Burger shot [23]={ 376, -66, 1000.5, 0, 10, 180, 205, "Burger Shot" }, [24]={ 376, -66, 1000.5, 1, 10, 180, 205, "Burger Shot" }, [25]={ 376, -66, 1000.5, 5, 10, 180, 205, "Burger Shot" }, [26]={ 376, -66, 1000.5, 6, 10, 180, 205, "Burger Shot" }, [27]={ 376, -66, 1000.5, 7, 10, 180, 205, "Burger Shot" }, [28]={ 376, -66, 1000.5, 8, 10, 180, 205, "Burger Shot" }, [29]={ 376, -66, 1000.5, 9, 10, 180, 205, "Burger Shot" }, [30]={ 376, -66, 1000.5, 2, 10, 180, 205, "Burger Shot" }, [31]={ 376, -66, 1000.5, 3, 10, 180, 205, "Burger Shot (Garcia)" }, [32]={ 376, -66, 1000.5, 4, 10, 180, 205, "Burger Shot" }, } -- Fast food blips blips = { -- x, y, z, blipID -- BCG stacked pizza [1]={ 2105, -1808, 14, 29 }, [2]={ 2084, 2224, 12, 29 }, [3]={ 2352, 2532, 12, 29 }, [4]={ -1721, 1359, 8, 29 }, [5]={ -1809, 946, 25, 29 }, [6]={ 203, -202, 2, 29 }, [7]={ 2756, 2477, 12, 29 }, [8]={ 1367, 249, 20, 29 }, [9]={ 2333, 75, 26, 29 }, [10]={ 2638, 1850, 12, 29 }, -- Cluckin' Bell [11]={ -2155, -2460, 31, 14 }, [12]={ -1214, 1830, 42, 14 }, [13]={ 929, -1353, 14, 14 }, [14]={ 2393, 2042, 12, 14 }, [15]={ 2838, 2407, 12, 14 }, [16]={ 2102, 2229, 12, 14 }, [17]={ 2638, 1671, 12, 14 }, [18]={ -1816, 619, 36, 14 }, [19]={ -2671, 258, 5, 14 }, [20]={ 2398, -1899, 14, 14 }, [21]={ 2420, -1510, 25, 14 }, [22]={ 173, 1177, 15, 14 }, -- Burger shot [23]={ 812, -1616, 14, 10 }, [24]={ 1199, -918, 44, 10 }, [25]={ 2367, 2071, 12, 10 }, [26]={ 2473, 2034, 12, 10 }, [27]={ 1872, 2042, 12, 10 }, [28]={ 2170, 2796, 12, 10 }, [29]={ 1158, 2072, 12, 10 }, [30]={ -1912, 828, 36, 10 }, [31]={ -2356, 1008, 51, 10 }, [32]={ -2336, -167, 36, 10 }, } -- Food prices prices = { 3,6,7,4 } -- Food health increase health = { 3,6,9,7 } -- object arrays marker = {} ped = {} And here's the original resource: https://community.multitheftauto.com/index.php?p=resources&s=details&id=8041, almost identical except for the replaced name. You don't need to be an expert to see that it's stolen, I don't know about the rest but it's highly possible there is more stolen work in there, I let that be unsaid tho as I don't know for sure. The topic it's reported, let's wait for the moderators to deal with it. Link to comment
VanDal Posted January 31, 2015 Author Share Posted January 31, 2015 lol wtf I dont try to sell this fast food script as i say i dont make it in the server i'm not the only one in my team. I have my own one and i already make it yesterday you can check the server again. and i dont make it in my list of scripts if you see.so you can report guys i realy dont care and the moderators will check more and say who is right. Link to comment
xeon17 Posted January 31, 2015 Share Posted January 31, 2015 What do you mean you don't try to sell the fast food? in first post you said that you're selling. Link to comment
Recommended Posts