View Single Post
  #9  
Old 10-05-2006, 12:58 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
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."lol";
  
temp.(@ temp."lipop") = "hmm?";
  
player.chat temp.lollipop;

is lesser to write then:
PHP Code:
//#CLIENTSIDE
function onCreated()
{
  
temp."lol";
  
makevar("temp." temp."lipop") = "hmm?";
  
player.chat temp.lollipop;

__________________
Reply With Quote