Put this script into lua/autorun. You can change KEY_F6 to any other key, for a list of keys look here: List of Keys - Gmod Wiki
Last active
June 13, 2018 20:58
-
-
Save ValentinFunk/a4e8246f336ba5599f01855013fe55d8 to your computer and use it in GitHub Desktop.
Bind to F6. Put in lua/autorun
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if SERVER then | |
AddCSLuaFile() | |
return | |
end | |
local key_is_down = false; | |
local lastPress = 0 | |
local function KeyPressedHook() | |
if(input.IsKeyDown(KEY_F6) and not key_is_down) and CurTime() > lastPress + 0.5 then | |
key_is_down = true; | |
RunConsoleCommand("pointshop2_toggle"); | |
lastPress = CurTime() | |
else | |
key_is_down = false; | |
end | |
end | |
hook.Add("Think","KeyPressedHook",KeyPressedHook); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Merci, pour ce script, est pour la correction que vous avez faite en rajoutant le cooldown. ce script vous permettra d'invoquer le pointshop 2, si vous avez des serveur en mysql c'est pratique ça permet d'avoir les touches differante, car si vous passez par le menu normal en attribuant une touche elle sera la même pour tout les serveurs relier en mysql, pour certains gamemode mode la touche F3 peut-être déjà attribuer, est crée des conflits, avec ce script vous pourrez mettre none en touche et l'attribuer via ce script c'est qui permet un attribution individuer de la touche d'invocation comme pour le pointshop 1
In anglish
Thank you, for this script, is for the correction you made by adding the cooldown. this script will allow you to invoke the pointshop 2, if you have mysql server it's practical it allows to have different keys, because if you go through the normal menu by assigning a key it will be the same for all servers connect in mysql, for some gamemode mode the key F3 may already assign, is creates conflicts, with this script you can put none in touch and assign it via this script is that allows an individuation assignment of the key Summoning like for the pointshop 1