2: Is there any command or lua script to remove the c4 in the game? (I have tried with "parse("strip "..p.." "..5)" it dont work)
Forum
General
Help Commands and Functions
Help Commands and Functions
6 replies
1

2: Is there any command or lua script to remove the c4 in the game? (I have tried with "parse("strip "..p.." "..5)" it dont work)
1
parse ("strip "..p.." 5")
Holloweye has written
1: Is there any command or lua script to force a player to change team?
if you're using amx2d
1
2
3
4
2
3
4
function adm_swap_admin(p, typ, cmd)
	cmd = args(cmd, "id_id, team")
	parse("make"..cmd.team.." "..cmd.id)
end
if not
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
add_hook("say", "swap")
function swap(p, t)
	if t:sub(1, 6) == "@swap " then
		local pl = t:sub(7, 8)
		local team = t:sub(9)
		for word in team:gmatch("[^%s]+") do
			team = word
			break
		end
		parse("make"..team.." "..pl)
	end
end
maket and
makect and
makespec (click for details)you can execute cs2d commands in Lua by using the parse command.
for example parse("makect "..id) this will make the player with the id "id" (variable) a ct.
1

Offline