• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

War tp

BugaS

Donżuan
Joined
Mar 12, 2009
Messages
1,219
Reaction score
9
Location
NYC
Ma ktoś skrypt działający na takiej zasadzie, że: są dwa teamy (zieloni i czerwoni). Jeden team wchodzi do jednego tp a drugi do tp, po wejsciu w tp jeden tp zmienia na kolor zielony a drugi na czerwony ich kolory outfitu.

ma ktoś na sell albo może i darmocha sie znajdzie ;x
 
Ja takie cos mam, ale pisalem dla kolesia na 'zamowienie', wiec nie wiem czy by chcial zebym to jeszcze komus odsprzedal :).
 
Zaczne Ci kawalek, Ty sobie dokoncz, ok?
Code:
local config = {
    chopy_w_srodku = { red = 0, green = 0, max = 10 },
    [1] = { value = 1, color = (int)czejwony, pos = { x = x, y = y, z = z },
    [2] = { value = 2, color = (int)ziejony, pos = { x = x, y = y, z = z }
}

function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	local team = 0
	if(config.chopy_w_srodku.red < config.chopy_w_srodku.max or config.chopy_w_srodku.green < config.chopy_w_srodku.max < config.chopy_w_srodku.max)then
		if(config.chopy_w_srodku.red < config.chopy_w_srodku.green)then
			team = 1
		elseif(config.chopy_w_srodku.red > config.chopy_w_srodku.green)then
			team = 2
		else
			team = math.random(1, 2)
		end
		
		team = config[team]
		if(team)then
			doPlayerSetStorageValue(cid, 50000, team.value)
			--NIE PAMIETAM OD OUTFITA KUWA MA
			doTeleportThing(cid, team.pos, TRUE)
		else
			doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "SORKS, BUG :(")
		end
	else
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "JUZ JE FULL, IDZ SOBIE!")
		doTeleportThing(cid, fromPosition, TRUE)
	end
end
 
Last edited:
registerCreatureEvent(player, noOutfitChange)

unregister at end event.


Mam cos podobnego - CTF.
 
Back
Top