What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

paxxx

Community Developer
Joined
Jan 15, 2010
Messages
260
hi,

some quests need to push some buttons in an order of sequence (like 6x C and F on specific times)
is there an XML element to put into profiles, to accomplish this quest step?
Thanks
 
I'm not sure what exactly you have bound to "C" and "F". The communicator is the default binding for C.

Could you be more specific?
 
well, forget the "C"...
if there is a quest,
which got that "F" sequence to get it done,
how can I initiate that?

Thanks
 
Use the "CSIAction" tag.

HTML:
<CSIAction QuestId="-1" QuestObjective="-1" QuestName="Unknown Quest Name" KeypadOrder="1,2,3,4,5" YesNoOrder="Y, N, Y, Y" FailIfNoCSI="false" />

The usual quest-related attributes are there (QuestId, QuestObjective, etc)

KeypadOrder is only used for CSI's that are actual keypad inputs. (I think there's like 7 total in the game) Simply supply the tag with the actual "code" for the keypad (comma-separated list of numbers)

YesNoOrder is the same for the "Yes/No" dialogs that pop up.

All other CSI's (such as rapid-tap, precision-tap, metronome, and "Simon Says") are handled automatically with the CSIAction tag.


Last note: CSI stands for "Client-Side Interaction".
 
Back
Top