The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
NPC Making NPC
Author Message
UltimaGo
Apprentice
*

Posts: 22
Likes Given: 5
Likes Received: 0 in 0 posts
Joined: Mar 2017
Reputation: 0



Post: #1
NPC Making NPC
Hello,

i was trying to make an NPC gerenate another npc..

Example:

I Have a NPC "A" that initiate the quest..

I want that when he initate the quest summon or generate a NPC "B" in some place of the map..

and this can make it to like a player can do it only 10 times or 1 time in 1 hour?

Its this possible?
ty to all!
04-12-2019 01:39 PM
Find all posts by this user Like Post Quote this message in a reply
Coruja
Sphere Developer
*****

Posts: 987
Likes Given: 5
Likes Received: 226 in 187 posts
Joined: Jul 2012
Reputation: 7

Dimension Shard

Post: #2
RE: NPC Making NPC
you just need to create the NPC using SERV.NEWNPC and use a simple time checker to only allow this 1x per hour
Code:
[FUNCTION QuestSummonNPC]
IF (<TAG0.Next> > <SERV.TIME>)
  SAY I must wait more <eval (<TAG0.Next>-<SERV.TIME>)/10> secs to summon another NPC
  return 1
ENDIF
TAG.Next=<eval <SERV.TIME>+((60*60)*10)>  // 1hour = 60sec * 60min
SERV.NEWNPC c_something
NEW.P=1234,1234
NEW.UPDATE
SAY I summoned <NEW.NAME> on <NEW.REGION.NAME>
04-13-2019 04:29 AM
Find all posts by this user Like Post Quote this message in a reply
UltimaGo
Apprentice
*

Posts: 22
Likes Given: 5
Likes Received: 0 in 0 posts
Joined: Mar 2017
Reputation: 0



Post: #3
RE: NPC Making NPC
(04-13-2019 04:29 AM)Coruja Wrote:  you just need to create the NPC using SERV.NEWNPC and use a simple time checker to only allow this 1x per hour
Code:
[FUNCTION QuestSummonNPC]
IF (<TAG0.Next> > <SERV.TIME>)
  SAY I must wait more <eval (<TAG0.Next>-<SERV.TIME>)/10> secs to summon another NPC
  return 1
ENDIF
TAG.Next=<eval <SERV.TIME>+((60*60)*10)>  // 1hour = 60sec * 60min
SERV.NEWNPC c_something
NEW.P=1234,1234
NEW.UPDATE
SAY I summoned <NEW.NAME> on <NEW.REGION.NAME>

Thanks for the answer!
I will test it and come back Smile
04-13-2019 11:24 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 2 Guest(s)