View Single Post
  #3  
Old 02-06-2004, 02:12 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Doesn't work, scripts:
(Just borrowing the era stuff temporarily, not to mention some era staff work on our server)
Staff Stick:
NPC Code:

//#CLIENTSIDE
if (weaponfired){
setani era_gani-superstick2,;
triggeraction playerx+1.5+vecx(playerdir)*2,playery+2+vecy(playe rdir)*2,stafftest,;
}


Staff Block Placer:
NPC Code:

if (actionserverside) {
putnpc2 playerx+.5,playery+.5,{join staffblock};
}
//#CLIENTSIDE

if (weaponfired){
triggeraction playerx+.5,playery+.5,serverside,Staff Blocks;
}




Staff Block Class:
NPC Code:

// NPC made by Josey Hunt
if (actionstafftest){
destroy;
}

//#CLIENTSIDE

if (playerenters) {
setimg era_staffblock.png;
block;
drawunderplayer;
}

if (created) {
setimg era_staffblock.png;
block;
drawunderplayer;
}

Reply With Quote