Jump to content

-.Paradox.-

Members
  • Posts

    1,239
  • Joined

  • Last visited

Everything posted by -.Paradox.-

  1. So, what are you trying to do exactly?
  2. setPedWalkingStyle will return false anyways.
  3. Nevermind. Fixed, I used onPlayerLogout event, and check if his in an acl group with (element data) and then set his element data to false.
  4. Stop stealing codes from my topics which you don't even know how to use.
  5. Hmm thanks, I had the same idea, Set his account data to Offline when he quit and when join set his account data data to Online.
  6. Stolen Grafuroam client script. https://community.multitheftauto.com/index.php?p= ... ls&id=9391 You should deal with this guy, Since he was already banned, Now he is evading ban, This resource have been reported 2 times, But moderators didn't deal with it.
  7. https://community.multitheftauto.com/ind ... ls&id=9409 https://community.multitheftauto.com/ind ... ls&id=9408 https://community.multitheftauto.com/ind ... ls&id=9407 https://community.multitheftauto.com/ind ... ls&id=9401 https://community.multitheftauto.com/ind ... s&id=9403* https://community.multitheftauto.com/ind ... ls&id=9404 Pictures spam, no description. DONE
  8. -.Paradox.-

    Question

    Hello guys, Is there a function/way to output players online and offline(with a specified element data like ("test")) in a gridlist?Thanks.
  9. -.Paradox.-

    Music

    Nobody is going to fix 233 & 310 lines as far as i know.. Well, check if there is a playing music, and if it's playing then stop it using. stopSound P.S: Don't forget to define 'The Current Playing Sound/Music'
  10. https://community.multitheftauto.com/index.php?p= ... ls&id=8028 https://community.multitheftauto.com/index.php?p= ... ls&id=8210 My resources, There are some unknown bugs that i couldn't fix, Anyway can you remove them both? I will update the new uncompiled version soon with some changes to the GUI. DONE
  11. Stolen from grafuroam client files. https://community.multitheftauto.com/index.php?p= ... ls&id=9391
  12. You're welcome, And i'm not your bro. Do for me a favor & stop copying Grafuroam, be original.
  13. Code Removed by Nikolai96 You must cancel the Admin panel 'shout' command as well, or you can chance the code command handler to 'shoutall'.
  14. They're running by themselves. You can't edit it as far as i know..
  15. MIKI785 Thank you. Max, I prefer doing it in my way.
  16. Hello guys, i have a little problem, when i kill a zombie, It appears a text showing how much i earned, but it appear for all players, and it suppose to appear only for who killed the zombie, here is my code: Server addEvent( "onZombieWasted" , true) addEventHandler( "onZombieWasted", getRootElement(), function( killer ) local money = 500 givePlayerMoney( killer, tonumber(money)) triggerClientEvent("onClientZombieWasted", killer, money) end) Client local x,y = guiGetScreenSize() function onTest() dxDrawText("+"..tostring(money), x*1211/1366, y*51/768, x*1351/1366, y*77/768, tocolor(0, 0, 0, 255), 1.00, "pricedown", "left", "top", false, false, true, false, false) dxDrawText("+"..tostring(money), x*1211/1366, y*49/768, x*1351/1366, y*75/768, tocolor(0, 0, 0, 255), 1.00, "pricedown", "left", "top", false, false, true, false, false) dxDrawText("+"..tostring(money), x*1209/1366, y*51/768, x*1349/1366, y*77/768, tocolor(0, 0, 0, 255), 1.00, "pricedown", "left", "top", false, false, true, false, false) dxDrawText("+"..tostring(money), x*1209/1366, y*49/768, x*1349/1366, y*75/768, tocolor(0, 0, 0, 255), 1.00, "pricedown", "left", "top", false, false, true, false, false) dxDrawText("+"..tostring(money), x*1210/1366, y*50/768, x*1350/1366, y*76/768, tocolor(22, 131, 38, 255), 1.00, "pricedown", "left", "top", false, false, true, false, false) --for i=1, 18 do --dxDrawText("A zombie got killed ".. i, x*0.2, 0 - y*0.03 + (y*0.05 * i),x,y,tocolor(255,255,255,255)) --end end addEvent("onClientZombieWasted", true) addEventHandler( "onClientZombieWasted", root, function(mon) if not isTimer(moneyTimer) then moneyTimer = setTimer(function() removeEventHandler("onClientRender", root, onTest) end, 2000, 1) money = mon addEventHandler("onClientRender", root, onTest) else money = (money + mon) resetTimer(moneyTimer) end end)
  17. Thank you, Is there anyway to prevent the spam of the repeated childs?
×
×
  • Create New...