Example of usage
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
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
dofile("sys/lua/wrapper.lua") dofile("sys/lua/yasc.lua") yasc.add("Assault", function(id) 	setmaxhealth(id, 75) 	sethealth(id, 75) 	equip(id, 54) 	equip(id, 30) 	setweapon(id, 30) 	speedmod(id, 5) end) yasc.add("Engineer", function(id) 	equip(id, 74) 	equip(id, 24) 	setweapon(id, 24) 	speedmod(id, 0) end) yasc.add("Defender", function(id) 	setmaxhealth(id, 150) 	sethealth(id, 150) 	equip(id, 40) 	setweapon(id, 40) 	speedmod(id, -5) end)
Approved by Sparty
Download
2 kb, 540 Downloads