Cached packet

Discussion in 'Help' started by Jamie2006, Mar 6, 2012.

  1. Jamie2006

    Jamie2006 AdvExt64 Customers (IL)

    Hi all,

    Does anyone know the cached packed to change playername color in Interlude ?
    Something like this in php.

    pack("cV",17,$char_id).tounicode($new_title);

    Gr Jamie
     
  2. Neurodrive

    Neurodrive New Member

    For name i don't remember but for title color is:
    PHP:
    public function setTitleColor($charId$colorRed$colorGreen$colorBlue)
        {
            
    $colorInt $colorRed + ($colorGreen 256) + ($colorBlue 256 256);
            
    $buf pack("cVV"0x70$charId$colorInt);
            return 
    $this->_push($buf);
        }
     
  3. Jamie2006

    Jamie2006 AdvExt64 Customers (IL)


    Thanks but that one I know, no I really want name color :p
     
  4. Neurodrive

    Neurodrive New Member

    Check, a list with C4 CacheD functions. I guess you can write it with that info.