Just a cool thought , hope it can be done !!!!

The place to chat about mods and other Unreal related stuff :-)
BringIt
https://www.facebook.com/warszawa.kuchnie.na.wymiar/

Just a cool thought , hope it can be done !!!!

Post by BringIt »

:?: Hello
This question is for Wolf or whoever makes mods, I was wondering, and I know its a far off question but.
Since unreal has a sound folder, and music, and such, is there a way to make a mod for words?
It could be sort of like mapvote, and have statements, comments, things like that, so you can choose one , and say it to your teammates, or others.
That would be a fun new thing for unreal peeps, I thought of it cause in call of duty you just hit your V button, and a list of sayings you can choose comes up, you hit 1-10 on the list and your person says it , and it comes up on the screen in words as well.
Just a thought if this can be done, please let me know, I would love to have that on my Celtic Warriors server.
Bring_It{CW}
User avatar
Xavious
Posts: 2250
Joined: Sun Jul 13, 2003 7:01 pm

Post by Xavious »

interesting....

heres mine:
this would be a coop thing, but it could be used a little in dm too.
you know you can say your message and it appears at the top (obviously)
so what if someone were to make a mod that lets you make the text appear above your charecter. it would be cool for private conversations, great on a coop server

this has nothing to do with bringits idea, i just felt like chipping in....
User avatar
}TCP{Cee
Posts: 4233
Joined: Fri Dec 20, 2002 6:01 pm
Location: Germany

Post by }TCP{Cee »

Both impossible/too hard to do/Wolf is out for lunch/I dont know about that stuff.
User avatar
}TCP{Wolf
Site Admin
Posts: 4663
Joined: Thu Dec 19, 2002 7:30 pm
Location: https://signal.me/#eu/4zInut2kHeg_ry0GD ... pdqka17o2F
Contact:

Post by }TCP{Wolf »

Key interception... console... stuff... shit... complicated... next life... sorry. Yes I believe it is possible but cannot be done in 10 minutes so no I'm currently not up for anything like that.
-=]I AM GETTING TOO OLD FOR SUBTLETY[=-

mail: chaos.worx[at]gmx.net
IRC Quakenet +OTR: }TCP{Wolf @#oldunreal @#tcp.clan
Jabber/XMPP +OTR: Wolfy359@jabber.org
Threema: CR6Y9YSS
Signal: see profile
ICQ: dead since russian takeover disables OTR
User avatar
Xavious
Posts: 2250
Joined: Sun Jul 13, 2003 7:01 pm

Post by Xavious »

ah well never mind, il take my idea to .:..:
}TCP{Cheiz
Posts: 18
Joined: Sun Aug 17, 2003 11:18 am

Post by }TCP{Cheiz »

What u can do is make some files like this:

Code: Select all

MainFunctions.key:
set input numpad0 exec numpad0functions.key
...
set input numpad9 exec numpad9functions.key

 numpad0functions.key
 set input numpad0 say Attack enemy base!|exec MainFunctions.key
 ...
 set input numpad9 say Please Cover me!|exec MainFunctions.key

 ...
 
 numpad9functions.key
 set input numpad0 open cheiz.nl|exec MainFunctions.key
 ...
 set input numpad9 disconnect|exec MainFunctions.key
I haven't tried this yet, but i'll do it right now.(with some shorter filenames) cause it seems like a good idea to me.

Bye,

Cheiz
}TCP{Cheiz
Posts: 18
Joined: Sun Aug 17, 2003 11:18 am

Post by }TCP{Cheiz »

Hmmm... I noticed that when you but the line

Code: Select all

set input numpad0 say Attack enemy base!|exec MainFunctions.key
in a file, it wont bind the part after the | to numpad0 but it will immediately execute it. Strange, because in the console this doesnt happen. But this means a spereate file is needed for each action because i cant bind more than 1 action to a key with a line in a file. So the line must be replaced by

Code: Select all

set input numpad0 exec say00
And a new file is needed called say00:

Code: Select all

say Attack enemy base!|exec MainFunctions.key
-Cheiz
Hyper
Posts: 811
Joined: Sun Jul 13, 2003 1:40 am
Location: 127.0.0.1
Contact:

Post by Hyper »

It is possible. Actually, I have it installed and use it. It's nothing more as a bunch of console commands stuck together. It's quite primitive, and does not look as nice as the Unreal II voice menu. Also it does not have sound. But it's still better as a keyboard full of keybinds. I pressed the wrong keybinds too often so I decided to put them in a menu:

Voice menu:
Image

Pressed 2 to open the DM voice menu:
Image

Pressed 3 to say something:
Image

As you see the text is not aligned well. It's centered by default and attempted to align left using spaces. :roll: But it works and most importantly also works online. Most client-side enhancements are being killed by anti-cheat software nowadays.
Last edited by Hyper on Wed Oct 20, 2004 10:26 pm, edited 1 time in total.
Alter your reality...Forever.

http://www.hypercoop.tk
[url]unreal://hypercoop.tk[/url]
User avatar
}TCP{aLICe
Posts: 1110
Joined: Thu Mar 20, 2003 5:23 pm

Post by }TCP{aLICe »

@Hyper:
How to do that?
User avatar
}TCP{Wolf
Site Admin
Posts: 4663
Joined: Thu Dec 19, 2002 7:30 pm
Location: https://signal.me/#eu/4zInut2kHeg_ry0GD ... pdqka17o2F
Contact:

Post by }TCP{Wolf »

}TCP{aLICe wrote:@Hyper:
How to do that?
Ditto
-=]I AM GETTING TOO OLD FOR SUBTLETY[=-

mail: chaos.worx[at]gmx.net
IRC Quakenet +OTR: }TCP{Wolf @#oldunreal @#tcp.clan
Jabber/XMPP +OTR: Wolfy359@jabber.org
Threema: CR6Y9YSS
Signal: see profile
ICQ: dead since russian takeover disables OTR
Taz
Posts: 2848
Joined: Wed Sep 24, 2003 3:29 pm

Post by Taz »

hey not bad could be useful in clan matches if they spawn :P ppl just say OMG HE SPAWNED ME LIKE 10 TIMES!
Hyper
Posts: 811
Joined: Sun Jul 13, 2003 1:40 am
Location: 127.0.0.1
Contact:

Post by Hyper »

Well, it's a bunch (lots) of "exec file.txt" commands working together. It on-the-fly assigns new keys to new functions. Here is an example of the main menu:

Code: Select all

;voice menu
setprogressmessage 1  General        5 CTF         
setprogresscolor (R=0,G=255,B=255)1
setprogressmessage 2 Deathmatch    6 Nali         
setprogresscolor (R=0,G=255,B=255)2
setprogressmessage 3 Friendly fire 7 Gesture   
setprogresscolor (R=0,G=255,B=255)3
setprogressmessage 4 Taunts          8 Admin       
setprogresscolor (R=0,G=255,B=255)4
setprogressmessage - Voice Menu (V Cancels) -
setprogresscolor (R=255,G=255,B=0)
setprogresstime 100
set input 1 exec vmenu1.txt
set input 2 exec vmenu2.txt
set input 3 exec vmenu3.txt
set input 4 exec vmenu4.txt
set input 5 exec vmenu5.txt
set input 6 exec vmenu6.txt
set input 7 exec vmenu7.txt
set input 8 exec vmenu8.txt
set input V exec novoice.txt
The "progressmessage" part displays text on the screen, and the set input assigns new keys to new files. For example: if you press one it displays the general voice menu (called vmenu1.txt here) and pressing V again removes the text and restores the default keybinds. This is done with novoice.txt.

You see that it needs a hell of a lot of text files.
Last edited by Hyper on Wed Oct 20, 2004 9:20 am, edited 1 time in total.
Alter your reality...Forever.

http://www.hypercoop.tk
[url]unreal://hypercoop.tk[/url]
User avatar
}TCP{Wolf
Site Admin
Posts: 4663
Joined: Thu Dec 19, 2002 7:30 pm
Location: https://signal.me/#eu/4zInut2kHeg_ry0GD ... pdqka17o2F
Contact:

Post by }TCP{Wolf »

Hehe too much work :) nah nice one seriously :)
-=]I AM GETTING TOO OLD FOR SUBTLETY[=-

mail: chaos.worx[at]gmx.net
IRC Quakenet +OTR: }TCP{Wolf @#oldunreal @#tcp.clan
Jabber/XMPP +OTR: Wolfy359@jabber.org
Threema: CR6Y9YSS
Signal: see profile
ICQ: dead since russian takeover disables OTR
User avatar
Xavious
Posts: 2250
Joined: Sun Jul 13, 2003 7:01 pm

Post by Xavious »

no hyper u shud have just said ´Magic¨

theres quite a few coop mods with sound packs added in...smartballs´dm server has 1 too i think

theres a really funny one where he said I like to hit my head off the wall!
User avatar
}TCP{aLICe
Posts: 1110
Joined: Thu Mar 20, 2003 5:23 pm

Post by }TCP{aLICe »

I did such menu for myself, but aligment is terrible. Is any chance to change this font to fixed one??? Or at least aling to left???
Wolf could you help?
Post Reply