Forum




An "Â" at first string in message?
6 replies



©, use
\169
. 
Simply replace the two in your code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--> Made by UrNightmare <--
-- Variable/s --
local prefix = "[TIP] : "
local center = "@C"
local color = "\169"
local tipsT = {
prefix.."SPOILER",
prefix.."SPOILER"
}
local tipsCT = {
prefix.."SPOILER",
prefix.."SPOILER"
}
-- Hook/s --
addhook("spawn","s_func")
-- Function/s --
function s_function(id)
if player(id, "team") == 1 then
msg2(id, color.."255255255"..tipsT[math.random(1,2)]..center)
elseif player(id,"team") == 2 then
msg2(id, color.."255255255"..tipsCT[math.random(1,2)]..center)
end
end



