Jump to content

Mefisto_PL

Members
  • Posts

    460
  • Joined

  • Last visited

Everything posted by Mefisto_PL

  1. Bez sensu napisałeś to "Dobra". Powinieneś wysłać od razu ten błąd.. Jeśli masz zamiar odpisać teraz "no dobra" albo coś w tym stylu to lepiej wgl nie odpisuj
  2. Hmm.. wejdź na serwer (kupiony lub host game) i jak się zalogujesz na admina wpisz komendę /debugscript 3 i podaj nam jaki błąd Ci wyskoczył .
  3. Pokaż plik meta.xml ,ponieważ to ten skrypt jak to ujął Wojak "Server-only function". Zatem plik meta powinien wyglądać tak: <meta> <info author="Tosti" type="script" name="NAZWA-SKRYPTU" version="1.0" /> <script src="NAZWA-SKRYPTU.lua" type="server"/> </meta>
  4. Can you give me events ?
  5. Yes it is but I want create bar, not meter
  6. Mefisto_PL

    Nitrobar

    How I can replace speedbar in race gamemode to nitrobar? I ask because on wiki I don't found anything to help :
  7. But It's possible, you want to replace car textures or what? Because custom cars not say everything
  8. I can make this for free but if you want to pay so okey You will pay Xeno
  9. Sorry For Off-Topic but I need this
  10. Thanks for it dude I think nobody help me , but you made it ^^. But I need help with votemap too
  11. Hi, how I can add to votemap "%" peoples who wants this map ?
  12. Lol .. Script is not compatible with race_nos ? Because nitro is never ending .. ///EDIT I fix that ^^
  13. Okey working You are my master ^^
  14. Ehh... Problem with DxCreateFont .. espfont = dxCreateFont("esp.ttf", 14) ...SCRIPT IS HERE... dxDrawText ( getPlayerName(player), sx + 1, sy - offset + 1, sx + 1, sy - offset + 1, tocolor(0,0,0,255), textscale*NAMETAG_TEXTSIZE, "espfont", "center", "bottom", false, false, false ) dxDrawColorText( getPlayerNametagText(player), sx, sy - offset, sx, sy - offset, tocolor(r,g,b,textalpha), textscale*NAMETAG_TEXTSIZE, 'espfont', 'center', 'bottom' )
  15. I have nitro shader from community and I want to remake it to that make a red nitro color on resource start .. Can anybody help me? --------------------------------------------------------------------------------- -- -- Nitro shader -- -- --------------------------------------------------------------------------------- addEventHandler("onClientResourceStart",resourceRoot, function() nitroShader = dxCreateShader("nitro.fx") end) -- This function will set the new color of the nitro function updateNitroColor(r,g,b) if nitroShader then if r and g and b then engineApplyShaderToWorldTexture (nitroShader,"smoke") dxSetShaderValue (nitroShader, "gNitroColor", r/255, g/0, b/0 ) end end end -- This function will reset the nitro back to the original function resetNitroColor() if nitroShader then engineRemoveShaderFromWorldTexture(nitroShader,"smoke") end end -- Example command use addCommandHandler("nitro", function(command,r,g,b) if r and g and b then local r,g,b = tonumber(r),tonumber(g),tonumber(b) if r <= 255 and g <= 255 and b <= 255 then updateNitroColor(r,g,b) outputChatBox("Nitro color updated!",255,255,255,true) else outputChatBox("Colors must be between 0 and 255",255,255,255,true) end else resetNitroColor() outputChatBox("Nitro color reset to original!",255,255,255,true) end end)
  16. Hmm... It's a next way to make this with xml file and I prefere this way. Because I have a lot of places to spawn.
  17. I want to make six spawns on player login i have script to save skin and money ..
  18. I don't know anything about table.. Can anybody send me link to help or code?
  19. more spawns ... 6 spawns for example.
  20. How Can I make a many spawns ? I want to create for example 6 others spawns.
  21. I want to make heal 10 seconds after the command
  22. 1) If you saw this so send me the url. 2) I want to make set timer to heal after the msg.
×
×
  • Create New...