Define what takes place once the element hits that offset point. To do this add a stuckClass to it. Example:
var sticky = new Waypoint.Sticky({
element: $('#pin-last')[0],
stuckClass: 'stuck',
offset: 80
});
Then, in CSS add:
.stuck {
position: fixed;
top: 80px;
}