View Single Post
  #24  
Old 03-06-2004, 05:35 PM
Fhqwhgads Fhqwhgads is offline
Registered User
Join Date: Nov 2003
Location: Chicago
Posts: 57
Fhqwhgads is on a distinguished road
Send a message via AIM to Fhqwhgads
ok wan check what i did wrong..
first i tried this:
NPC Code:
if (created){
canbecarried;
drawoverplayer;
}
//#CLIENTSIDE
if (wasthrown){
sleep 1;
destroy;
putnpc,ppball.txt,30,30;
}


and the txt file was the same.... then I tried
NPC Code:
if (created){
canbecarried;
drawoverplayer;
}
if(actionserverside){
putnpc block.png,ppball.txt,30,30;
}
//#CLIENTSIDE
if (wasthrown){
sleep 1;
destroy;
triggeraction 0,0,serverside;
}


and then i tried it with actionclientside.. i dont know why im using triggeraction, just thought it might work.. so can u help me out?
Reply With Quote