Hello, how would i disable a funchen in a script if a player was in gun game or any other game mode? also just makeing 100% sure but i am talking about the ugx mod so if theres anyone that could help me i would be happy
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Are you asking how to tell if the players are currently in Gun Game? If so:
Code Snippet
Plaintext
if(level.ugxm_settings["gamemode"] == 1) { //Current gamemode is gun game, do something } else { //They are playing something other than gun game, do something else. }
Gamemode int ID list for UGX Mod v1.0.3: 0: Classic 1: Gungame 2: Arcademode 3: Sharpshooter 4: Bounty Hunter
Are you asking how to tell if the players are currently in Gun Game? If so:
Code Snippet
Plaintext
if(level.ugxm_settings["gamemode"] == 1) { //Current gamemode is gun game, do something } else { //They are playing something other than gun game, do something else. }
Gamemode int ID list for UGX Mod v1.0.3: 0: Classic 1: Gungame 2: Arcademode 3: Sharpshooter 4: Bounty Hunter
sorry for ask this here but if i use timed gameplay?
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Are you asking how to tell if the players are currently in Gun Game? If so:
Code Snippet
Plaintext
if(level.ugxm_settings["gamemode"] == 1) { //Current gamemode is gun game, do something } else { //They are playing something other than gun game, do something else. }
Gamemode int ID list for UGX Mod v1.0.3: 0: Classic 1: Gungame 2: Arcademode 3: Sharpshooter 4: Bounty Hunter