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

[Request] King of the Castle- Guild Event

Myths

Cyntara Staff
Joined
Jul 15, 2009
Messages
484
Reaction score
1
(I'm hoping this is in the right place, if not I ask that a moderator please move it to the appropriate forum. Thank you.)

I essentially am interested in a script that will unite guilds, and making being in guilds a serious thing.

I want it to be an arena style event where guilds fight each other. These would be the requirements:

1) A lever that when pulled broadcasts to the server who it was pulled by. (Optional: it may also announce what guild they are in- or not let the person pull it if they are guildless.)

2) A door that opens every Saturday at a certain time (say 5:00pm). Or a wall that appears on Saturday to signify that nobody owns the castle anymore, and is removed when the event is started. It will appear the next Saturday once again, etc. It may be behind the doors so the guild that has ownership can't pass through the wall of course.

3) A time limit on the event, and a broadcast system to announce how much time is remaining at 1 hour, 30 minutes, 10 minutes, and 5 minutes.

4)* A script to recognize what person pulled the lever last, and to invite all persons in that guild through the door until the next week.
(It would be best if the door was always owned by a GM, and that players from the guild will be able to open/enter the door if the script recognizes them as part of the guild. This way, random players or friends can't enter.)

NOTE: I have seen events similar to this in at least 1 other server, and i'm sure other servers have versions as well. If nobody is willing to create the appropriate scripts, I would greatly appreciate it if someone would post a link to where I can find something remotely similar to it.

If you have any questions, feel free to ask for clarification :thumbup: . It's for TFS 0.2.5 Rep++ of course for anybody who can make the script or direct me to the right place.
 
Im not that experienced so unfortunately I cant make this script for ya, but I will rep++ you for giving me a awesome idea :D Wow like raids in tibia, 5,10,25 man raids to loot awesome stuffs ;)
 
This type of event is in the "Viking Server."
I used to play there all the time, until it was over run by BR's.

It would be a nice thing to have.
 
Yah, that's where I remembered it from. I think it would be fun to incorporate it in other ot's. I think it's a great way to unite guilds, and have fun at the same time. If possible, it would be great if people could script parts of what is needed, and mabey it could all come together.
-If you are able to create any of the needed scripts, I would really appreciate it!

@Above: What is WoE?
 
I'm also willing to throw some money at the creator ;)

Red
 
Destroy wall:
LUA:
function onTimer()
	local pos = {x = 100, y = 100, z = 7, stackpos = 1}
	local item = getThingFromPos(pos)
	if os.date ("%A") == "Saturday" then
		if item.uid ~= 0 then
			doBroadcastMessage("Wall was removed.", MESSAGE_STATUS_CONSOLE_RED) 
			doRemoveItem(item.uid) 
		end
	end
	return true
end

PS: Sorry for noobish english xD
 
Back
Top