Jump to content

Paper

Members
  • Posts

    127
  • Joined

  • Last visited

Everything posted by Paper

  1. i don't think you can do it...
  2. Paper

    Parkour

    For the first release i'm not using any animation, but in future releases i think i will implement some of them
  3. Paper

    Parkour

    I'm making a gamemode similiar to race but you are on foot and you have to use the parkour style to reach the final checkpoint, but actually it's in pause, i'm at 35% of development
  4. Paper

    Need help.

    local sondID function startMusic() setRadioChannel(0) song = playSound("music"..songID..".mp3",true) outputChatBox("#ffffff* #C0FF3ETurn on/off Music Using #FFFFFF\"M\"",255,255,255,true) end function makeRadioStayOff() setRadioChannel(0) cancelEvent() end function toggleSong(player, command, songID) if not songID and type(songID) == "number" then if not songOff then setSoundVolume(song,0) sondID = nil songOff = true removeEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff) else setSoundVolume(song,1) songOff = false sondID = songID setRadioChannel(0) addEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff) end else outputChatBox("#ffffff* #C0FF3ECommand syntax: /musicmusic [songID]",255,255,255,true) end end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),startMusic) addEventHandler("onClientPlayerRadioSwitch",getRootElement(),makeRadioStayOff) addEventHandler("onClientPlayerVehicleEnter",getRootElement(),makeRadioStayOff) addCommandHandler("musicmusic",toggleSong) addEventHandler("onClientResourceStop",getResourceRootElement(getThisResource()),startMusic) Try this, but you can't use the bind key anymore
  5. Paper

    Need help.

    You have to add the mp3 file in the meta.xml and add a command like /playsong [1/2/3] where 1-2-3 are the song's id
  6. I don't like it but... nice one
  7. Oh, my bad... i wrote this fast so i could not review it
  8. Simply: compatibleMaps=exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource()) for index, map in ipairs(compatibleMaps) do nubCP = #getElementsByType(map, 'checkpoint') end
  9. Can you explain better your problem?
  10. Mhh assomiglia molto a un pannello creato da Nextreme Comunque... puoi dirmi di preciso qual'è l'errore che ti da nel debugscript?
  11. I don't need this script because i will use this function in the gamemode... Anyway i solved in another way, thanks anyway
  12. Exhaustive anserw... why it's not the same?
  13. I think it's the same thing this: exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource())
  14. I should add this line in the map's meta? In the race maps i don't see any line that includes race resource
  15. You mean the folder name? Yes it's "blabla"
  16. Hey guys, i'm trying to script a gamemode but i found first problem: The map cycling... i explain my problem: I use the function: exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource()) for get all maps compatible whit this gamemode, and it's forlder is called "blabla", now if in the map's meta in the "gamemode" field i put "blabla" as gamemode name this should work right? Instead it wont work... This is the info tag in the gamemode's meta: <info author="Paper" version="0.1" type="gamemode" name="blabla" description="" /> and this is the test map's meta: <info gamemodes="blabla" type="map" name="[bLA]Test Map" author="Paper" version="1.0" description=""></info>
  17. Paper

    About Tables

    For the random number you should do something like this: table[math.random(1, #table)] --WHERE table IS THE NAME OF THE TABLE YOU WANT GET THE NUMBER For the sencond question, i understand that: If the selected account have the data "player.one" is true it's ok, if not you will add "player.one" data to this account... if it's right something like this: if not (getAccountData(account) == "player.one") then setAccountData(account, "player.one", true) end
  18. Paper

    Chat issue(s)

    Wait, you want to show the output just to the players in a definied team and it shows to all players?
  19. Da quello che ho capito usi windows 7 su un macbook pro... magari è questo il problema...
  20. Will be easyer for this script because you will not add any event handler, you will have to modify just the gui functions
  21. Credevo fosse una funzione creata da lui, per questo non l'ho tolta
  22. You can use the textlib, it will be easyer ^^
  23. Ma non è la stessa cosa di quella postata da me?
  24. function playerJoins( ) spawnThePlayer(source) local connectedPlayerName = getPlayerName ( source ) local serverName = getServerName( ) outputChatBox ( "#FF0000Benvenuto " .. connectedPlayerName .. " su " .. serverName .. "!" , source, 255, 255, 255, true ) outputChatBox("#FF0000Fai /cmd per sapere tutti i comandi del server.", source, 255, 255, 255, true ) outputChatBox("Premi F4 per vedere la lista delle armi.", source ) givePlayerMoney( source, 100 ) end addEventHandler ( "onPlayerJoin", getRootElement(), playerJoins) Dovrebbe andare! P.S: spawnThePlayer è una funzione che hai creato tu?
  25. Paper

    spawn timer

    setTimer spawnPlayer addEventHandler("onPlayerWasted", root, function)
×
×
  • Create New...