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

Well, that's enough!

Do you mind if I release Datapacks/Scripts with Events?


  • Total voters
    26
  • Poll closed .
Can you explain how to set this configuration of rewards?

rewards = {

[65] = { {2520,1} , {"2160",15} },
[25] = { {"2514",1} , {2195,1} },
[10] = { {"platinum coin",1} , {"platinum coin",1} }
}

I do not understand what it means [65] - [25] - [10]
 
Can you explain how to set this configuration of rewards?



I do not understand what it means [65] - [25] - [10]
Listen dear, I do not understand what it means as well.
Because as I said before, I'm only releasing, I don't understand well in these configurations,etc.
But, You can configure it easily,
By putting the id of the item
{ID OF THE ITEM,1} , {"ID OF THE ITEM",HOW MANY COINS/ If a normal item, so put 1} },

- - - Updated - - -

Why so long?

also what will you release on 7 december?
Let it a surprise?
Cya.
 
Smelling lava wont work.


Code:
[Error - Action Interface]
In a timer event called from:
buffer:onUse
Description: 
[string "loadBuffer"]:54: attempt to call global 'zacznijCzekac' (a nil value)
stack traceback:
[string "loadBuffer"]:54: in function <[string "loadBuffer"]:51>
 
Try adding,
Code:
	czekaj = coroutine.yield
	function czekanie(c)
		if(coroutine.status(c) ~= 'dead') then
			local _, czas = coroutine.resume(c)
			addEvent(czekanie, czas, c)
		end
	end
	function zacznijCzekac(f)
		if(type(f) == 'function') then
			local c = coroutine.create(f)
			czekanie(c)
		end
	end

to the end of 050-function.lua in the lib folder.

I didn't test this, I just have the function on my server for another event I think. So it may or may not work. Just trying to help :) Rep+ if I did!
 
Fire well event do not work.
All works but when all the players get tp to arena nothing more happends?..
+ can i make so war event (battle dream) open more than 1s every day?

[04/12/2012 18:43:31] [Error - TalkAction Interface]
[04/12/2012 18:43:31] buffer:eek:nSay
[04/12/2012 18:43:31] Description:
[04/12/2012 18:43:31] (luaCreateConditionObject) This function can only be used while loading the script.

[04/12/2012 18:43:31] [Error - TalkAction Interface]
[04/12/2012 18:43:31] buffer:eek:nSay
[04/12/2012 18:43:31] Description:
[04/12/2012 18:43:32] (luaDoAddCondition) Condition not found
 
Last edited:
Try adding,
Code:
	czekaj = coroutine.yield
	function czekanie(c)
		if(coroutine.status(c) ~= 'dead') then
			local _, czas = coroutine.resume(c)
			addEvent(czekanie, czas, c)
		end
	end
	function zacznijCzekac(f)
		if(type(f) == 'function') then
			local c = coroutine.create(f)
			czekanie(c)
		end
	end

to the end of 050-function.lua in the lib folder.

I didn't test this, I just have the function on my server for another event I think. So it may or may not work. Just trying to help :) Rep+ if I did!

Thanks, added to the main thread.

Btw, Reputations aren't that important, but it just makes me happy, so if I started to get more reputations, the new release will include a lot of events.
Thank you!
Most known as I'm willing-to release (Battle Boats Event).

- - - Updated - - -

I've released a vote, "What about releasing datapacks and rare scripts, maps aswell.. with events in this thread?"
Yours,
iFate!
 
Last edited:
Error in console with ~Battle Dreams~ TFS 0.4 Rev 3884

9pmg78.jpg
 
@iFate,
I threw you some rep, and I'm here to help with any problems. I'm glad you added my info to the first post, hope it helps a few people :)

Keep the events coming, I plan on testing them out and helping with any bugs. I might actually use the Battle Boats + Scalding Lava Events if everything is working properly. Haven't really had a run event before, and it looks like it would be fun.

Rep+ iFate, keep the good releases coming!

P.S - My vote, keep this thread ONLY FOR EVENTS, and make another one ONLY FOR DataPacks/Script Pack Releases. Just my thought, to allow people a one stop shop just for events. :)

/Extrodus
 
Congratulations!
3 Events more were released, hope you will enjoy that new release within the coming hours.
LMS's MAP credits goes to "TECKMAN"
CTF's MAP credits goes to ME!
Battle boats hasn't a map.


ENJOY THE NEW RELEASE!!!!!!
~x~x~x~x~x~x~x~x~x~x~x~x~x~x~x~x~x~x~x~

@iFate,
I threw you some rep, and I'm here to help with any problems. I'm glad you added my info to the first post, hope it helps a few people :)

Keep the events coming, I plan on testing them out and helping with any bugs. I might actually use the Battle Boats + Scalding Lava Events if everything is working properly. Haven't really had a run event before, and it looks like it would be fun.

Rep+ iFate, keep the good releases coming!

P.S - My vote, keep this thread ONLY FOR EVENTS, and make another one ONLY FOR DataPacks/Script Pack Releases. Just my thought, to allow people a one stop shop just for events. :)

/Extrodus
Okay, your voting is accepted for sure.
I'm willing to do this, a new thread would be more helpful, and I got a lot of great datapacks, rare scripts to release, that's a lot of people is promising by it, as its very important, rare to find.​
 
All those events are already released expect battle boats -.-
Thank you, took me more than a hour to upload, post, and make these bold options, etcetera.

Tell your friends to download the events, and enjoy it.


-To all the scripters-
If you are one of the good scripters, Download the event, and if you found any bugs, try to fix it and post here, and I'll be posting it in the main thread to help the people that starts the events in their server.
 
You will need these functions for battle boats.
these are the functions Extrodus posted.
Lua:
	czekaj = coroutine.yield
	function czekanie(c)
		if(coroutine.status(c) ~= 'dead') then
			local _, czas = coroutine.resume(c)
			addEvent(czekanie, czas, c)
		end
	end
	function zacznijCzekac(f)
		if(type(f) == 'function') then
			local c = coroutine.create(f)
			czekanie(c)
		end
	end
 
You will need these functions for battle boats.
these are the functions Extrodus posted.
Lua:
	czekaj = coroutine.yield
	function czekanie(c)
		if(coroutine.status(c) ~= 'dead') then
			local _, czas = coroutine.resume(c)
			addEvent(czekanie, czas, c)
		end
	end
	function zacznijCzekac(f)
		if(type(f) == 'function') then
			local c = coroutine.create(f)
			czekanie(c)
		end
	end

Added to main thread, thank you.

@New release will be in 25 January. <3
 
how do i "instal" these events? do i have to download every part? where to paste the xml files, and how do i edit the positions on my map plz help, you events are amazing, i'd really love to have them :D
 

How I can start CTF? doesn't work for me =/ I use TFS 0.4 8.6
Truly, it works for 0.4, but you have to configure it?
You can test this link to download another CTF Event: Download
@Thorn
I can't help you sir, I'm not that guy that has a lot of time, I got my studies,etcetera.
Ask a better scripter.
Thank you.
 
Back
Top