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...