Conversation Spin:
In the conversation itself, in the lower bottom right of the screen, is a selection of TABs. It defaults on TEXT APPEARS WHEN. There are two little arrows, one pointing left, the other right. Click the RIGHT ARROW until the CURRENT FILE TAB is displayed, and click it.
CHECK Stop Camera Zoom In.
DONE!
Text Pulled From Script:
I know how to pull a player's name of their own character via a script to display it in floaty text format, or within the conversation itself, but I'm not familiar on how to snag another player's name. From within the party? All player's online? Can't you just review /listpcs that does this for all players online to understand how it works?
Variables are straight forward, since you can use a variety of script calls. GetSkillRank(), GetAC(), GetLocalInt(), etc. You just have to define them.
Example:
object oPC=GetPCSpeaker();
int iSkill=GetSkillRank(SKILL_BLUFF, oPC);
string sSkill = IntToString(iSkill);
string sBroadcast = "Vincent's Bluff Skill is: "+sSkill+" and that's pretty darn good!";
SendMessageToPC(oPC, sBroadcast);
FP!