Results 1 to 9 of 9

Thread: Script rotu

  1. #1
    ... connecting
    Join Date
    Jul 2018
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Script rotu

    Hello Sirs,

    How to start rotu script for voice responses? I am thinking about using responses in turn.

  2. #2
    Private
    Join Date
    Jan 2018
    Location
    Somewhere
    Posts
    43
    Thanks
    10
    Thanked 21 Times in 16 Posts
    Hello,

    What do you mean by ''rotu script for voice responses''?
    Explain more about it...

  3. #3
    ... connecting
    Join Date
    Jul 2018
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts
    For example
    Keys combination v51

    1) Hello!
    2) Hi there!
    3) How are you today!

    For v52

    1) Great shot!
    2) Great job!
    3) Well done bro!

    For v53

    1) Bye bye!
    2) See you later aligator!
    3) Good night!

  4. #4
    Private
    Join Date
    Jan 2018
    Location
    Somewhere
    Posts
    43
    Thanks
    10
    Thanked 21 Times in 16 Posts
    Ah these commands, I think you can find some of them on google... you can download them as a .iwd file.
    About other commands, ask Iznogod... because he has them on his JUMPERHEAVEN servers.

  5. #5
    Private First Class thOuMta's Avatar
    Join Date
    Oct 2012
    Location
    France
    Posts
    191
    Thanks
    139
    Thanked 35 Times in 28 Posts
    Just look in maps\mp\gametypes\_quickmessages.gsc

    You have this:

    PHP Code:
    case "1":
        
    soundalias "US_mp_cmd_followme";
        
    saytext = &"QUICKMESSAGE_FOLLOW_ME";
        
    //saytext = "Follow Me!";
        
    break; 
    you can make other case like

    EXEMPLE:

    PHP Code:
    case "10":
        
    soundalias "CHANGE_IT";
        
    //saytext = &"QUICKMESSAGE_FOLLOW_ME";
        
    saytext "Hello";
        break; 

    change the soundalias and saytext to what you want
    its very simple to make what you want.

  6. The Following User Says Thank You to thOuMta For This Useful Post:

    Polat (17th July 2018)

  7. #6
    Private
    Join Date
    Jan 2018
    Location
    Somewhere
    Posts
    43
    Thanks
    10
    Thanked 21 Times in 16 Posts
    Hey,

    If you don't know how to do it, just download these taunts and try to learn from it how to do it, it's really easy and only needs some focus.


  8. #7
    Brigadier General
    Join Date
    Oct 2012
    Posts
    994
    Thanks
    20
    Thanked 588 Times in 388 Posts
    He means a VSTR toggle script for config files.

  9. #8
    ... connecting
    Join Date
    Jul 2018
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Windows are ok now, but this script is not working. What is wrong with it?

    rotu()
    {
    random=randomint(7);
    switch(random)
    {
    case 0:
    soundalias = "need_ammo1";
    saytext = "^5AMMO^7!";
    break;
    case 1:
    soundalias = "need_ammo2";
    saytext = "^5AMMO^7!";
    break;
    case 2:
    soundalias = "need_ammo3";
    saytext = "^5AMMO^7!";
    break;
    case 3:
    soundalias = "need_ammo4";
    saytext = "^5AMMO^7!";
    break;
    case 4:
    soundalias = "need_ammo5";
    saytext = "^5AMMO^7!";
    break;
    case 5:
    soundalias = "need_ammo6";
    saytext = "^5AMMO^7!";
    break;
    case 6:
    soundalias = "need_ammo7";
    saytext = "^5AMMO^7!";
    break;
    }
    }
    Attached Thumbnails Attached Thumbnails 2018-07-18_111613.png   2018-07-18_111621.png  
    Last edited by prestidigitator; 27th July 2018 at 10:18. Reason: Correction

  10. #9
    ... connecting
    Join Date
    Jul 2018
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts
    ditto

Posting Permissions

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