Thread: Better ATTR's
View Single Post
  #8  
Old 07-27-2011, 12:49 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
I guess I should have been more specific, if you store an array of integers it will truncate the rest.

PHP Code:
function onCreated(){
 
temp.p = findplayer("Mark Sir Link");
 
p.addweapon(this.name);
 
p.attr[17] = {1, 5, 8};
 echo(
p.attr[17]); //echoes 1,5,8
}

//#CLIENTSIDE

function onCreated(){
  
player.chat = player.attr[17]; // 1
} 
Reply With Quote