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

Ideas for scripters!

GodSebbe

Banned User, reason: To Sexy
Joined
Apr 16, 2011
Messages
846
Reaction score
123
Location
Sweden
Hello dear scripters. i'll got some ideas for you. but if you take them. i want you to post them, in the thread, or pm. doesnt mather. i would enjoy that:$ (if you wanna help me im USING 8.54)

ACTION & MOVEMENTS IDEAS!

-~- [Movment & More] Chess system, based on movement? that would be nice, maybe kinda hard thought. (not useful at all, but maybe fun for players)

-~- [Movement & Action] if an tutor/senior tutor/gm/cm, walks on a floor with actiond-id: 1934 they can't, but an God can walk on it.

-~- [Action] if you click on a scroll, the scroll tp you home. (NOT TEMPLE) Home to your home.


TALKACTION IDEAS!
-~-

SPELL IDEAS!
-~- Clone Spell, it makes clones of you called xxxx. you make more clones if you're higher level. like this:
*lvl.20 = 2 clones.
*lvl.50 = 3 clones. And so on.

-~- it transform you to an mutated tiger. then u get 25% more speed. and you get some extra spells, only for the tiger.

-~- you summon a pinguin. but you dont control it. it walks by itself. but when it touch the wall's or an player, or item like an crate. the pinguin will explode. [Have to make monster for that]

MONSTER IDEAS!
-~- Suicide bomber. [dwarf outfit recommended]


I will write down every single idea that's in my mind.
Thanks in Advance, Sebbe:cool:
 
Last edited:
1- /closeserver

3-
LUA:
function onStepIn(cid, item, frompos, topos)

 if item.actionid == 1934 then
   if getPlayerAccess(cid) <  5 then
     doPlayerSendCancel(cid,"Only GOD can pass.")
     doTeleportThing(cid, fromPosition, true)
    end
 end
return TRUE
end

Not tested. :~
 
Last edited:
1- /closeserver

3-
LUA:
function onStepIn(cid, item, frompos, topos)

 if item.actionid == 1934 then
   if getPlayerAccess(cid) <  5 then
     doPlayerSendCancel(cid,"Only GOD can pass.")
     doTeleportThing(cid, fromPosition, true)
    end
 end
return TRUE
end

Not tested. :~

it didnt work. the text came. but an ordinary player can pass.
 
Last edited:
Code:
function onStepIn(cid, item, frompos, topos)
   if getPlayerAccess(cid) < 5 then
     doTeleportThing(cid, frompos)
     doPlayerSendCancel(cid,"Only GOD can pass.")
    end
return true
end

Maybe this for 3???
Only make some changes to the script of DukeeH xD
 
LUA:
function onStepIn(cid, item, frompos, topos)
	if getPlayerGroupId(cid) < 6 then
		return doTeleportThing(cid, frompos) and doPlayerSendCancel(cid, "Only GODs may pass") and true
	end
end
 
LUA:
function onStepIn(cid, item, frompos, topos)
	if getPlayerGroupId(cid) < 6 then
		return doTeleportThing(cid, frompos) and doPlayerSendCancel(cid, "Only GODs may pass") and true
	end
end

Functions returns true
LUA:
function onStepIn(cid, item, frompos, topos)
	if getPlayerGroupId(cid) < 6 then
		return doTeleportThing(cid, frompos) and doPlayerSendCancel(cid, "Only GODs may pass")
	end
end
 
--Updated-- :), between, darkhaos your didn't work, and if yours dont work, i dont think bogart's will to. Thank you anyways^_^ what happend: The text came but it didn't happend anything.
 
--Updated-- :), between, darkhaos your didn't work, and if yours dont work, i dont think bogart's will to. Thank you anyways^_^ what happend: The text came but it didn't happend anything.

LUA:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	if not isPlayer(cid) then return true end
	if getPlayerGroupId(cid) < 6 then
		return doTeleportThing(cid, fromPosition) and doPlayerSendCancel(cid, "Only GODs may pass")
	end
	return true
end
 
Last edited:
Back
Top