PDA

View Full Version : Script rotu



prestidigitator
16th July 2018, 18:38
Hello Sirs,

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

Polat
17th July 2018, 07:02
Hello,

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

prestidigitator
17th July 2018, 09:32
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!

Polat
17th July 2018, 10:36
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.

thOuMta
17th July 2018, 11:58
Just look in maps\mp\gametypes\_quickmessages.gsc

You have this:



case "1":
soundalias = "US_mp_cmd_followme";
saytext = &"QUICKMESSAGE_FOLLOW_ME";
//saytext = "Follow Me!";
break;


you can make other case like

EXEMPLE:



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.

Polat
17th July 2018, 13:38
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.


Download Link (http://www.mediafire.com/file/gcj1nbr9thj2f2b/bjusters_taunts_2.0.zip)

Tally
18th July 2018, 08:20
He means a VSTR toggle script for config files.

prestidigitator
18th July 2018, 09:26
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;
}
}

prestidigitator
27th July 2018, 09:19
ditto