Jump to content
  • 0

apply timer countdown exit to a quest


domez86

Question


  • Group:  Members
  • Topic Count:  85
  • Topics Per Day:  0.02
  • Content Count:  207
  • Reputation:   0
  • Joined:  06/11/13
  • Last Seen:  

Hi, I need a dungeon exit timer.
Make a dungeon timed, like 1 hour, that affects the single char click to enter.
Countdown for each separate player.

Thanks!

Edited by domez86
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   3
  • Joined:  02/14/14
  • Last Seen:  

18 hours ago, domez86 said:

Hi, I need a dungeon exit timer.
Make a dungeon timed, like 1 hour, that affects the single char click to enter.
Countdown for each separate player.

Thanks!

There are several such scripts here in the community, your request has already been made by many other players, search here you will find.

In the latter case you should take a custom script and reuse the code, there are several systems that do timekeeping, daily login, vip system, gold room, presence system among others.

Start practicing the search tool right now, and start being more curious when fiddling with scripts before your server comes up with a bug that you will get totally lost, at which point it may be too late.

Someone may appear here with the script ready because it is a simple and easy script, but this is not advisable precisely because it is a simple and easy script.

If you don't find the script here in the community let us know that I will help you use the search tool.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  85
  • Topics Per Day:  0.02
  • Content Count:  207
  • Reputation:   0
  • Joined:  06/11/13
  • Last Seen:  

6 hours ago, Tisuuu said:

There are several such scripts here in the community, your request has already been made by many other players, search here you will find.

In the latter case you should take a custom script and reuse the code, there are several systems that do timekeeping, daily login, vip system, gold room, presence system among others.

Start practicing the search tool right now, and start being more curious when fiddling with scripts before your server comes up with a bug that you will get totally lost, at which point it may be too late.

Someone may appear here with the script ready because it is a simple and easy script, but this is not advisable precisely because it is a simple and easy script.

If you don't find the script here in the community let us know that I will help you use the search tool.

I tried to carcare but I can't find the right one for me. I need ke the map has a countdown to finish my personal dungeon, simple autowarp to Prontera for example or to the save point (in my dungeon there is the mapflag nosave :-P)

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   3
  • Joined:  02/14/14
  • Last Seen:  

3 hours ago, domez86 said:

I tried to carcare but I can't find the right one for me. I need ke the map has a countdown to finish my personal dungeon, simple autowarp to Prontera for example or to the save point (in my dungeon there is the mapflag nosave :-P)

Why don't you try to implement this form?

On 10/26/2019 at 9:40 PM, sader1992 said:

 


prontera,0,0,0	script daily_warper	444,{
	if(LASTENTERTIME > gettimetick(2)){
		mes "you can enter once every 24hr";
		mes "come back after " + gettimestr("%Y-%m/%d %H:%M:%S",21,LASTENTERTIME);
		end;
	}
	LASTENTERTIME = gettimetick(2) + (60*60*24);
	warp "payon",0,0;
end;
}

 

 

On 10/27/2019 at 7:21 AM, domez86 said:

perfect, work! tnx!!! just explain to me what is the value 21?
in: ("% Y-% m /% d% H:% M:% S", 21, LASTENTERTIME)

tnx!

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  85
  • Topics Per Day:  0.02
  • Content Count:  207
  • Reputation:   0
  • Joined:  06/11/13
  • Last Seen:  

19 hours ago, Tisuuu said:

Perché non provi ad implementare questo modulo?

 

 

 

 

 

 

 

 

 

 

are 2 different things

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  85
  • Topics Per Day:  0.02
  • Content Count:  207
  • Reputation:   0
  • Joined:  06/11/13
  • Last Seen:  

I need to render the maps of my dungeon in time, after the time has expired you are teleported to Prontera for example, logically you don't have to teleport all the players that are there at that moment, maybe 20 minutes for char.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...