View Single Post
  #11  
Old 03-11-2004, 03:09 AM
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
hmm seems i have a problem again... ok i have these two scripts but i cant seem to combine them so they work... like the clientside and the serverside...
CODE 1
NPC Code:

//#SERVERSIDE
if (playerchats && strequals(#c,hi)){
putnpc2 45,35,{
if (created){
setimg black.png;
canbecarried;
}}}


CODE 2
NPC Code:

//#CLIENTSIDE
if (wasthrown){
setcharprop #c,good;
sleep 1;
destroy;
}
canbecarried;


I cant find a way to combine the two so they work... the clientside and the serverside wont make em work together... the separate scripts work fine but not combined...
Reply With Quote