Jump to content

Starkz

Members
  • Posts

    8
  • Joined

  • Last visited

Starkz's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. I think that's to "mod" a texture, i just want to replace it with another texture of the game. Maybe there's a converter or something? Thanks for the help anyway.
  2. Hi, I would like to know if there's a way to change the texture of the objects as in SA-MP, I have many mappings on another server, and I would like to use them here too. I've been looking around but didn't find anything similar. Thank you.
  3. Starkz

    Cuestions

    Ty, and with the music, is there any way?
  4. Starkz

    Cuestions

    Is there a way to make the music gradually lower when it ends? and another How I can do to make an image appear gradually from transparent to visible? I think in both cases can be done with some kind of timer, but I'm really new to LUA.
  5. Hey I have another cuestion. Is there a way to make the music gradually lower when it ends?
  6. It works! ty very much
  7. Still not working. The song sounds, but i cant stop it.
  8. Hi, I'm a real newbie in LUA script, and doing "something", I checked it but it doesn't work. The idea is to play a song (Which is played) and then pressing "space", the song stops. addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), function() setTimer(function() playSound("winsound.mp3") end, 2000, 1) end ) function stopMusic(player, key, keyState) if(keyState == "down") then stopSound("winsound.mp3") end end function bindTheKeys(player, commandName) bindKey(player, "space", "down", stopMusic) end
×
×
  • Create New...