Hi all, I tried to do this, for experiment sake, and I couldn't get it to work. I pressed the Shift and Tild key. The console came up. I typed in: game.party[Elmo].award_experience(6000) and nothing happened. Thank you for any help you may be able to offer. Pystal
You can't use the character name, you have to use what number they are in the party, starting with 0 on the left and going up from there.
Don't type the name "elmo." Type the number he is. The first party member is considered 0, the second is 1, etc. So for example, if he is the thrid character from the left, the command would look something like: game.party[2].award_experience(6000) I have never used that particular command, so if that one doesn't work, try this one to set his experience to whatever you like: game.party[2].stat_base_set(stat_experience,number) number being whatever you want his exp to be. hope that helped. EDIT :sadblinky dahhh Kalshane you beat me. I almost felt good there.
Code: game.obj_create(xxxxx, game.party[0].location-5) where xxxxx is the proto number of the monster you want to create. Alternatively Code: create xxxxx but this spawns the monster right on top of whatever character you have selected.