Results 1 to 5 of 5

Thread: npc sit

  1. #1

    npc sit

    so im trying to make my npc to sit down how can i make it?
    Computer Science major? I don't know. What's GS2?
    日本語が少し出来ます。でも、「Weeb? ??じゃないですよ!

  2. #2
    You can use "setcharani" in the NPC script. You'll need to look for the actual gani name.
    I think it's something like "sit_.gani" or "PlayerSit.gani."
    It is possible, I just can't remember off the top of my head.
    There may also be a setting when you open up the NPC. If you drag the "Noob NPC", and not the "White Outline" one. Hope I helped!

  3. #3
    El Bacon Hombre Police Commissioner
    Join Date
    Jun 2013
    Location
    United States
    Posts
    247
    Yes, setcharani is very plausible.

    setcharani(string, string); is a client side function. The parameters are: Gani Name, Attributes.
    An example would be
    PHP Code:
    //#CLIENTSIDE
    function onCreated() {
        
    showCharacter();
        
    setcharani("sit"NULL);


  4. #4
    Veteran Ek CM Bolivar's Avatar
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    423
    I use

    setcharani sit,;
    How to contact me?

    In-game name currently: ZombiEk" Ciprioni
    Current gang owned: Mayhem
    Skype: ek_graal
    Facebook: Shannon Gallagher
    Email: [email protected]
    Push notifications: enabled

    Ask me any questions/concerns!

  5. #5
    Quote Originally Posted by Ek CM Bolivar View Post
    I use

    setcharani sit,;
    Yes, that is the GS1 alternative. The GS2 version will not work in the offline editor.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •