Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spawns
Author Message
Art
Journeyman
*

Posts: 118
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Apr 2012
Reputation: 0



Post: #1
Spawns
Greetings. Can i get uid of creature from worldgem bit spawn point?
10-13-2012 04:28 PM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #2
RE: Spawns
No, there is no way, you can check with forchars though and look for memory_isspawned, here's an example
Code:
[function getuidfromspawn]
local.uid=<uid>
forchars <strarg <streat <streat <morep>>>>
  if (<memoryfindtype.0200.link>==<local.uid>)
    local.return=<uid>
  endif
endfor
return <local.return>
Use it from the worldgem bit, assuming it is the default object in the code below
Code:
if (<uid.<getuidfromspawn>.ischar>)
  uid.<getuidfromspawn>.say Hello, my UID is: <getuidfromspawn>
endif

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
10-13-2012 04:54 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Art
Journeyman
*

Posts: 118
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Apr 2012
Reputation: 0



Post: #3
RE: Spawns
Hm, but NPC may be far away from the spawn point. I want write own system for lost NPC teleportation. I should check with timer, how long away from spawn NPC. Put memory item on every NPC ? I think it's too expensive.. check all npc with forinstances? Maybe expensive too? So i though maybe spawn point can control NPC.
10-14-2012 04:51 PM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #4
RE: Spawns
Use TIMERF Art. Rather than a memory object, that'll save some resources, here's an example:
Code:
[function lostnpcteleport]
if (<memoryfindtype.0200>)
  if (<distance <memoryfindtype.0200.link>> >= 50) //50 tile away or more?
    go=<memoryfindtype.0200.link.p> //teleport to the spawn gem
  endif
  timerf 60, lostnpcteleport
endif
Then on your NPCs in @create add:
Code:
timerf 60, npclostteleport

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
10-14-2012 08:56 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


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