I dunno why people are using makevar

-longer too write
-looks more complicated if you ask me, but isn't
PHP Code:
//#CLIENTSIDE
function onCreated()
{
temp.a = "lol";
temp.(@ temp.a @ "lipop") = "hmm?";
player.chat = temp.lollipop;
}
is lesser to write then:
PHP Code:
//#CLIENTSIDE
function onCreated()
{
temp.a = "lol";
makevar("temp." @ temp.a @ "lipop") = "hmm?";
player.chat = temp.lollipop;
}