What's the difference between "ply" "Player" "pl" and "_p" ?
I keep seeing different forms of "ply" on many commands but is there really a difference?
It's just the variable name, you could literally set it to anything.
For example:
[code]
local Player = FindMetaTable("Player")
local Jason = FindMetaTable("Player")
local AnythingYouWant = FindMetaTable("Player")
function GM:PlayerSpawn( AnythingCanGoHereItsJustAName )
print( "The player \"" .. AnythingCanGoHereItsJustAName:GetName() .. "\" has respawned." )
end
[/code]
Thanks :downs:
Sorry, you need to Log In to post a reply to this thread.