• 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!

Potrzebny skrypt.

witmar

New Member
Joined
Oct 21, 2008
Messages
248
Reaction score
0
Location
Poland, Dębica
Witajcie.
Kolejny raz prosze Was o pomoc.
Potrzebuje skryptu, ktory dziala nastepujaco:

Po klknieciu na dzwignie zostajemy teleportowani w dane miejsce (do ustawienia).
Wiem, ze skrypt nie jest skomplikowany ale nie zajmuje sie lua tak wiec sam nie potrafie go napisac.

Za pomoc Rep++
 
to zacznij sie zajmowac albo znajdz jakis skrypt i go przerob?
wywolanie kilku funkcji nie jest trudne a moze sie czegos nauczysz, nie ma takiego pisania synek, koniec tematu, dziekuje dobranoc
 
Jak znasz się "co nie co" to będziesz potrafił znaleźć ten skrypt w internecie ?
 
Ty nie chcesz pomocy, ty chcesz gotowca a ten skrypt jest bardzo prosty
 
Lua:
function onUse(cid, item, frompos, item2, topos)
npos = {x=210, y=120, z=7} 
doTeleportThing(cid, npos) 
    return 1
end
 
^ Patzre tez jestes pro skrypter !
Ndodatek zanim mu to napsiales to jeszcze ejbanes 4 bezsensowne posty w temacie ! Brawo !
 
Code:
local dest = {x = 666, y = 666, z = 6}
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(item.itemid == 1945) then
		doTransformItem(item.uid, item.itemid + 1)
	elseif(item.itemid == 1946) then
		doTeleportThing(cid, dest)
		doTransformItem(item.uid, item.itemid - 1)
	end
	return true
end
 
Code:
local dest = {x = 666, y = 666, z = 6}
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(item.itemid == 1945) then
		doTransformItem(item.uid, item.itemid + 1)
	elseif(item.itemid == 1946) then
		doTeleportThing(cid, dest)
		doTransformItem(item.uid, item.itemid - 1)
        else
                doPlayerSendCancel(cid,"Sorry, not possible.")
        end
        return 1
end
 
zapraszamy ponownie kiedy znowu bedziesz chcial skrypt tylko zeby teleportowal w inne miejsce ;d
 
Back
Top