I need a script which makes a mirror effect in for example water or glass.
Also, if possible, I need a whave effect in the same script which makes the reflection move a little.
Basicly I want this script (http://rmrk.net/index.php/topic,31962.msg392250.html#msg392250)but for RMXP instead.
Maybe it allready exist, maybe not. I don't know... Do you?
Try: http://www.hbgames.org/forums/viewtopic.php?t=10619
The one under the spoiler that says Reflections
I can't get it to work.
I'll look after the demo
EDIT:
Nvm. I found the error.
For future users:
In this part on line 184
[spoiler]if (character.is_a?(Game_Event) and character.list!=nil and character.list[0].code == 108 and character.list[0].parameters == ["r])[/spoiler]
It shall be
[spoiler]if (character.is_a?(Game_Event) and character.list!=nil and character.list[0].code == 108 and character.list[0].parameters == ["r"])[/spoiler]
They have forgotten a ".
Thank you very much Modern! ;D