please @
DC: Solving THE problems PLEASE
Scripts
please how to be VIP in script zombie ?
please how to be VIP in script zombie ?
1

DC: Solving THE problems PLEASE
SQ or not.
SQ then I'm afraid to say you can't because you must put an admin script too that's have the VIP rank but this could lead to conflicts between two lua files because of their serveractions keys but they can be changed somehow.
DC: solve your problem?addhook("say", "vip")
function vip(id, txt)
	msg("\169255255255"..player(id, "name").."[VIP]: "..txt)
end
THEMUD: is not in say is The players list
function initArray(m)
	local array = {}
	for i = 1, m do
		array[i]=0
	end
	return array
end
vip=initArray(32)
filename = "sys/lua/???.lua"
dofile (filename)
addhook ("join","join_vip")
function join_vip(id)
	for i=1,#vipusgns do
		if player(id,"usgn")==vipusgns[i] then
			vip[id]=1
		end
	end
end
vipusgn = {??????}
1
