• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Requesting a pro scripter.

zoky12

New Member
Joined
Jul 4, 2008
Messages
60
Reaction score
0
I need a scripter where if gm says !demon 6 demons will spawn in in x,y possition. something like anni.
 
Code:
function onSay(cid, words, param, channel)
	local demons = {
		{x = , y = , z = },
		{x = , y = , z = },
		{x = , y = , z = },
		{x = , y = , z = },
		{x = , y = , z = },
		{x = , y = , z = }
	}

	local count = 1
	if (param and param <= 7) then
		count = param
	end

	for i = 1, count do
		doSummonCreature("Demon", demons[i])
	end
	return true
end

Code:
!demons 1-6
 

Similar threads

Back
Top Bottom