With respect to the problem of being unable to download things from this site, see this thread:
http://rmrk.net/index.php/topic,44304.0.htmlAlso, the problem is only with Firefox, so you can use any other browser and it will be fine.
For your second problem, go into the NMS and go to around line 801, where you should see this:
# Woratana's :: Draw Face
@text.gsub!(/\\FA\{(.*?)\}/i) { "\x12{#{$1}}" }
Directly underneath it, paste the following:
@text.gsub!(/\\([AP])F\[(\d+)\]\}/i) {
actor = $1.upcase == "P" ? $game_party.members[$2.to_i] : $game_actors[$2.to_i]
if actor != nil
"\x12{#{actor.face_name},#{actor.face_index}}"
else
""
end
}
Now, you can use the following codes in a message:
\af[n]
That will draw the face of the actor with the ID n.
Ie. \af[1] would draw the face of the first actor in the database (by default: Ralph); \af[2] would draw the face of the second actor in the database (by default: Ulrika); etc.
You can also use the new code:
\pf[n]
That will draw the face of the nth member in the party, with the count starting at 0. So, if your party is composed of the following members in the following order:
Ralph
Bennett
Lawrence
then \pf[0] would draw Ralph's face; \pf[1] would draw Bennett's face; and \pf[2] would draw Lawrence's face.
Mind you, I did not test any of that, but it ought to work.