Skip to content

Instantly share code, notes, and snippets.

@ValentinFunk
Last active June 13, 2018 20:56
Show Gist options
  • Save ValentinFunk/94f69a284da8a44ace9c264afe88cd67 to your computer and use it in GitHub Desktop.
Save ValentinFunk/94f69a284da8a44ace9c264afe88cd67 to your computer and use it in GitHub Desktop.
Pointshop 2 - Add external menu button

Adding a button to the PS2 Inventory section

It's easy to add a button that opens another menu. Here a report menu button was added:

img

Create a new file in garrysmod/lua/autorun/ps2_extrabuttons.lua with the following contents:

AddCSLuaFile()
Pointshop2:AddInventoryButton( "Report Menu", "pointshop2/warning8.png", function( )
  -- Run console command to open the report menu
	RunConsoleCommand( "report_open" )
  
  -- Optional, closes the shop after opening the report menu
  Pointshop2.CloseMenu( )
end )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment