Revision Difference
Player:ShowProfile#527326
<function name="ShowProfile" parent="Player" type="classfunc">
<description>Opens the player steam profile page in the steam overlay browser.</description>
<realm>Client</realm>
</function>
<example>
<description>Frame with all players and when click on it open Steam Profile</description>
<code>
local frame = vgui.Create("DFrame")
frame:Center()
frame:SetSize(300, 100)
frame:SetTitle("Show Steam Profile")
⤶
-- Yoshi, please join discord.gg/gmod and introduce yourself in #wiki channel.⤶
for k, ply in ipairs(player.GetAll()) do⤶
⤶
for k, ply in ipairs(player.GetAll()) do⤶
local addbutton = vgui.Create("DButton", frame)
addbutton:SetPos((k * 75) - 50, 50)
addbutton:SetSize(75, 20)
addbutton:SetText(ply:Name())
addbutton.DoClick = function()
ply:ShowProfile()
end
end
</code>
<upload src="8e3f9/8d813044c539c3b.png" size="13108" name="image.png" />
<output><image src="8e3f9/8d813044c539c3b.png"/></output>
</example>