it will speedmod you to that value
i need help fixing it
[01:41:50] LUA ERROR: sys/lua/LuaScript.lua:19: '=' expected near 'end'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
addhook('say', '_say')
function _say(id, text)
if text == '!help' then
parse('sv_msg2 '..id..' !speed [Value] -- Gives You a Speed with Value-XX')
parse('sv_msg2 '..id..' !equip [WPN-ID] -- Equip A XX-ID Weapon')
parse('sv_msg2 '..id..' !armor82 -- Gives You Medic Armor')
parse('sv_msg2 '..id..' !armor83 -- Gives You Super Armor')
parse('sv_msg2 '..id..' !laser -- Equip A Weapon')
end
if string.find(text,'!speed') then
local speed1 = text:sub(1,6)
if speed1 == '!speed' then
local speed2 = text:sub(8,10)
parse('speedmod '..id..' '..speed1)
end
return1
end
end
!speed command error
1 
Offline
EngiN33R