Leetex | 2013-05-25 17:13
Hashtagger (fun script)
Hashtagger (fun script)

Hello,

this script adds hashtags (like on Twitter) to your chat messages. The way how it works, it picks randomly some words out of your written message and adds a hashtag. It is a pure fun script without any deeper sense.

The default binds will be taken, T for chat, Y for team chat. If you press one of those buttons, something like "/t " or "/tt " will appear in your chat line. This is absolutely required, because those are the commands for picking hashtags. You can also perform a command (for example, "/t /setmaster 1" would work). If you don't want to add hashtags, just delete the "/t ".

If you want to reset the binds, use:

/bind T [saycommand];
/bind Y [sayteamcommand];

I know, the way with the "/t " commands isn't very proper, but I had no idea how I could do it otherwise. If you have a better way, please tell me.

t = [
	alias original "";
	
	loop i $numargs [
		original = (concatword $original (getalias (concatword "arg" (+ $i 1))) " ");
	];
	
	translate_and_say_text 1 $original;
];

tt = [
	alias original "";
	
	loop i $numargs [
		original = (concatword $original (getalias (concatword "arg" (+ $i 1))) " ");
	];
	
	translate_and_say_text 0 $original;
];

translate_and_say_text = [
	if (> $numargs 1) [
		if (= (strcmp (substr $arg2 0 1) "/") 1) [
			perform_command (substr $arg2 1 (- (strlen $arg2) 1));
		] [
			alias words "";
			
			loop i (rnd (div (listlen $arg2) 2)) [
				alias word (at $arg2 (rnd (- (listlen $arg2) 1)));
				
				if (= (strstr $words $word) -1) [
					words = (concatword $words $word " ");
				];
			];
			
			alias text $arg2;
			
			looplist i $words [
				text = (concatword $text "#" $i " ");
			];
			
			if (= $arg1 1) [
				say $text;
			] [
				sayteam $text;
			];
		];
	];
];

perform_command = [
	if ($numargs > 0) [
		do $arg1;
	];
];

bind T [
	saycommand "/t ";
];

bind Y [
	saycommand "/tt ";
];
hashtagger.cfg (1.07 KB)
0
points
 (0 votes)
User login
Users on Quadropolis
1 guest & no users online
Created 2025-02-09 15:35
1 day 2 hours ago
30
points ]
 (3 votes)
Created 2019-05-17 21:51
5 years 38 weeks ago
30
points ]
 (3 votes)
Created 2020-06-13 21:05
4 years 34 weeks ago
20
points ]
 (2 votes)
Created 2021-05-24 00:01
3 years 37 weeks ago
8
points ]
 (1 vote)
Created 2024-06-02 14:26
36 weeks 1 day ago
8
points ]
 (1 vote)
Created 2024-06-02 22:13
36 weeks 19 hours ago
vampirefrog
Created 2024-04-11 22:25
43 weeks 3 days ago
vampirefrog
29
points ]
 (4 votes)
Created 2010-05-30 10:00
14 years 37 weeks ago
Gangler
36
points ]
 (4 votes)
Created 2020-10-22 00:50
4 years 16 weeks ago
Zoocata
10
points ]
 (1 vote)
Created 2024-02-11 21:20
52 weeks 20 hours ago
vampirefrog
10
points ]
 (1 vote)
Created 2023-07-23 20:02
1 year 28 weeks ago
36
points ]
 (4 votes)
Created 2020-12-10 12:49
4 years 9 weeks ago
Created 2023-12-12 23:34
1 year 8 weeks ago
Zoocata
Created 2023-11-27 23:00
1 year 10 weeks ago
20
points ]
 (2 votes)
Created 2023-10-01 15:21
1 year 19 weeks ago
9
points ]
 (1 vote)
Created 2023-06-13 17:54
1 year 34 weeks ago
Zoocata
27
points ]
 (3 votes)
Created 2023-05-05 20:58
1 year 40 weeks ago
Zoocata
18
points ]
 (2 votes)
Created 2023-03-02 01:40
1 year 49 weeks ago
Getridou
Created 2023-01-29 23:27
2 years 1 week ago
Created 2023-01-19 19:36
2 years 3 weeks ago
Who's new
  • ColdIV
  • Aidan
  • Hunk
  • letic86
  • BATMAN