Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-27-2003, 04:59 AM
a1tjm a1tjm is offline
Registered User
Join Date: Aug 2003
Posts: 12
a1tjm is on a distinguished road
Angry Door -.-

I know its simple but

//#CLIENTSIDE
if(playerchats && strequals(#c,open) && strequals(#a,a1tjm)){
hidelocal;
}
if(playerchats && strequals(#c,close) && strequals(#a,a1tjm)){
showlocal;
}
if(playerchats && strequals(#c,open) && strequals(#a,papajchris)){
hidelocal;
}
if(playerchats && strequals(#c,close) && strequals(#a,papajchris)){
showlocal;
}

If I use it it would only work for my account and it would not block or open for other users who try to enter =o

I am not a great scripter
Reply With Quote
  #2  
Old 09-27-2003, 05:05 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
http://forums.graal2001.com/forums/s...threadid=46557
__________________
Reply With Quote
  #3  
Old 09-27-2003, 05:07 AM
a1tjm a1tjm is offline
Registered User
Join Date: Aug 2003
Posts: 12
a1tjm is on a distinguished road
:(

I still don't get it x.x
Reply With Quote
  #4  
Old 09-27-2003, 08:24 AM
Dach Dach is offline
call me Chad, it's cooler
Dach's Avatar
Join Date: Aug 2002
Posts: 1,899
Dach is on a distinguished road
*claps* (not bad for a beginner really)
*points to KSI link*
you should have nested the chat checks in a playerchats event block, and you could just group the account checks together, but that'd be ugly
__________________
Scripting Documents:Old Script Documentation-Movement Tutorial
Reply With Quote
  #5  
Old 09-27-2003, 05:19 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
Quote:
Originally posted by a1tjm
If I use it it would only work for my account and it would not block or open for other users who try to enter =o
showlocal will show an hidden NPC only for the current player.
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
Reply With Quote
  #6  
Old 09-27-2003, 05:41 PM
faenix faenix is offline
Registered User
Join Date: Jul 2003
Posts: 56
faenix is on a distinguished road
If you want it to block for all the players, take out the //#CLIENTSIDE and use the commands hide and show rather than hidelocal and showlocal
__________________
In a mad world, only the mad are sane.
Reply With Quote
  #7  
Old 09-27-2003, 06:25 PM
Goboom Goboom is offline
Pixel Monkey
Goboom's Avatar
Join Date: Dec 2001
Location: Michigan
Posts: 1,702
Goboom is on a distinguished road
Send a message via ICQ to Goboom Send a message via AIM to Goboom Send a message via MSN to Goboom Send a message via Yahoo to Goboom
Re: Door -.-

Quote:
Originally posted by a1tjm
I know its simple but

//#CLIENTSIDE
if(playerchats && strequals(#c,open) && strequals(#a,a1tjm)){
hidelocal;
}
if(playerchats && strequals(#c,close) && strequals(#a,a1tjm)){
showlocal;
}
if(playerchats && strequals(#c,open) && strequals(#a,papajchris)){
hidelocal;
}
if(playerchats && strequals(#c,close) && strequals(#a,papajchris)){
showlocal;
}

If I use it it would only work for my account and it would not block or open for other users who try to enter =o

I am not a great scripter
Kai means dont do this crap you have right now.
NPC Code:

if(playerchats && strequals(#c,open) && strequals(#a,a1tjm)){
hidelocal;
}


Do something like this.
NPC Code:

if (playerchats){
if (strequals(#c,open)){
if (strequals(#a,a1tjm)){
//stuff goes here
}
}
}

__________________
Reply With Quote
  #8  
Old 09-27-2003, 09:02 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
You have to use triggeraction to get from clientside to serverside.

-The playerchat is checked clientside, aswell as the account name. Then use triggeraction, and the hide part goes serverside.
__________________
Former Global Scripting Team Member


Reply With Quote
  #9  
Old 09-27-2003, 09:42 PM
Riot-Starter Riot-Starter is offline
Registered User
Join Date: Aug 2001
Location: Central Florida, USA
Posts: 79
Riot-Starter is on a distinguished road
Send a message via AIM to Riot-Starter
Quote:
Originally posted by Ningnong
You have to use triggeraction to get from clientside to serverside.

-The playerchat is checked clientside, aswell as the account name. Then use triggeraction, and the hide part goes serverside.
Ew why?
Check serverside, perform serverside.
Reply With Quote
  #10  
Old 09-27-2003, 09:59 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
check playerchats serverside....uh huh?
__________________
Former Global Scripting Team Member


Reply With Quote
  #11  
Old 09-27-2003, 10:08 PM
Riot-Starter Riot-Starter is offline
Registered User
Join Date: Aug 2001
Location: Central Florida, USA
Posts: 79
Riot-Starter is on a distinguished road
Send a message via AIM to Riot-Starter
Yep. Something wrong with me doing playerchat checks serverside?
Reply With Quote
  #12  
Old 09-27-2003, 10:15 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
no, no, nothing... appart from the fact it won't work.
__________________
Former Global Scripting Team Member


Reply With Quote
  #13  
Old 09-27-2003, 10:17 PM
Riot-Starter Riot-Starter is offline
Registered User
Join Date: Aug 2001
Location: Central Florida, USA
Posts: 79
Riot-Starter is on a distinguished road
Send a message via AIM to Riot-Starter
Yes it does work, just fine.....

Ever even attempt it?
Reply With Quote
  #14  
Old 09-27-2003, 10:26 PM
Ningnong Ningnong is offline
Registered User
Ningnong's Avatar
Join Date: Nov 2002
Location: < -- way
Posts: 262
Ningnong is on a distinguished road
so your saying this will work?

NPC Code:

if (playerchats){
if (strequals(#c,/test)) sendtorc testing!;
}



?

Sorry but it doesn't.
__________________
Former Global Scripting Team Member


Reply With Quote
  #15  
Old 09-27-2003, 10:30 PM
Riot-Starter Riot-Starter is offline
Registered User
Join Date: Aug 2001
Location: Central Florida, USA
Posts: 79
Riot-Starter is on a distinguished road
Send a message via AIM to Riot-Starter
It works fine for me.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 12:46 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.