
Paper
Members-
Posts
127 -
Joined
-
Last visited
Everything posted by Paper
-
i don't think you can do it...
-
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
-
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
-
I don't like it but... nice one
-
Oh, my bad... i wrote this fast so i could not review it
-
Simply: compatibleMaps=exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource()) for index, map in ipairs(compatibleMaps) do nubCP = #getElementsByType(map, 'checkpoint') end
-
Can you explain better your problem?
-
Devo fixare il buy map di questo pannello help pls
Paper replied to keisonp9's topic in Italian / Italiano
Mhh assomiglia molto a un pannello creato da Nextreme Comunque... puoi dirmi di preciso qual'è l'errore che ti da nel debugscript? -
I don't need this script because i will use this function in the gamemode... Anyway i solved in another way, thanks anyway
-
Exhaustive anserw... why it's not the same?
-
I think it's the same thing this: exports.mapmanager:getMapsCompatibleWithGamemode(getThisResource())
-
I should add this line in the map's meta? In the race maps i don't see any line that includes race resource
-
You mean the folder name? Yes it's "blabla"
-
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>
-
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
-
Wait, you want to show the output just to the players in a definied team and it shows to all players?
-
Da quello che ho capito usi windows 7 su un macbook pro... magari è questo il problema...
-
Will be easyer for this script because you will not add any event handler, you will have to modify just the gui functions
-
Credevo fosse una funzione creata da lui, per questo non l'ho tolta
-
You can use the textlib, it will be easyer ^^
-
Ma non è la stessa cosa di quella postata da me?
-
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?
-
setTimer spawnPlayer addEventHandler("onPlayerWasted", root, function)