Buying XP

Discussion in 'General Modification' started by Ax Thrower, Sep 29, 2006.

Remove all ads!
  1. Pystal

    Pystal Member

    Joined:
    Mar 19, 2006
    Messages:
    9
    Likes Received:
    0
    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
     
  2. Kalshane

    Kalshane Local Rules Geek

    Joined:
    Aug 6, 2004
    Messages:
    1,653
    Likes Received:
    4
    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.
     
  3. whatsername74

    whatsername74 The Poison Woman

    Joined:
    Jul 31, 2006
    Messages:
    473
    Likes Received:
    1
    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.
     
    Last edited: Oct 14, 2006
  4. Ax Thrower

    Ax Thrower Blood Lust

    Joined:
    Apr 3, 2006
    Messages:
    892
    Likes Received:
    0
    hey all, whats t he console code to spawn a monster to check
     
  5. Cerulean the Blue

    Cerulean the Blue Blue Meanie Veteran

    Joined:
    Apr 23, 2005
    Messages:
    1,962
    Likes Received:
    0
    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.
     
  6. Pystal

    Pystal Member

    Joined:
    Mar 19, 2006
    Messages:
    9
    Likes Received:
    0
    Awesome! Thanks guys. I will give this a shot. I really appreciate the help.

    Take care,
    Pystal
     
Our Host!