Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11

Thread: Help.

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

    Question Help.

    I need help learning to script as the wiki explains it too complicated and mentors give me examples and critiques. Please comment whether or not you guys are interested!!

    E.k" CM Bolivar
    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!

  2. #2
    I can teach you how to script in this thread. So tell me what you know first of all to begin with so I can have a good understanding of where you are.

  3. #3
    You need to tell us what you do understand and what you don't understand. Else we can't help you.

  4. #4
    Veteran Ek CM Bolivar's Avatar
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    423
    Well all I know is NPC(character) scripts. Head, boy, sleevecolor etc.
    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
    Street Boss John's Avatar
    Join Date
    Jun 2013
    Location
    Lebanon
    Posts
    825
    If you haven't understood anything from the tutorial I made, let me know so I can explain more deeply.
    -Johnaudi

  6. #6
    Veteran Ek CM Bolivar's Avatar
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    423
    Well, first can you please tell me how to make a chair (my own graphic) so that the player sits?

    I tried:
    // NPC made by Stefan Knorr
    if (created) {
    }
    if (playertouchsme) {
    dontblock;
    drawunderplayer;
    triggeraction 50,29,sit.gani,;


    }
    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!

  7. #7
    Veteran Ek CM Bolivar's Avatar
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    423
    And:
    // NPC made by Stefan Knorr
    if (created) {
    }
    if (playertouchsme) {
    dontblock;
    drawunderplayer;
    setani 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!

  8. #8
    Street Boss John's Avatar
    Join Date
    Jun 2013
    Location
    Lebanon
    Posts
    825
    You're scripting using Gs1, please use Gs2 instead.
    For the script:
    PHP Code:
    //#CLIENTSIDE
    function onCreated() {
      
    dontblock();
      
    setshape2(22, {22222222});

    This will only work in a server.
    -Johnaudi

  9. #9
    Veteran Ek CM Bolivar's Avatar
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    423
    It doesn't work ini my offline editor :c
    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!

  10. #10
    Street Boss John's Avatar
    Join Date
    Jun 2013
    Location
    Lebanon
    Posts
    825
    Quote Originally Posted by Ek CM Bolivar View Post
    It doesn't work ini my offline editor :c
    I don't like level editor, so it's better to get hands on a server.
    Not sure if the following would work:
    PHP Code:
    //#CLIENTSIDE
    if (created) {
      
    dontblock;
      
    setshape2 2,2,"22,22,22,22";

    Not sure though.
    -Johnaudi

Posting Permissions

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