Skul 
Master
 
Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9
![]()
|
RE: Still have Main Threads error :( [last profiles]
You probably have a spawn gembit there that has a high <amount>, look around at the spawn bits and make sure all of the spawns are at a moderate amount. You should add this code to your i_worldgem_bit item
Code:
on=@item
message <name>
if (<type>==t_spawn_char)
if (<serv.chardef.<more1>>) || ( <serv.spawn.<more1>>)
message (Character Spawn: <more1>)
else
message (Invalid Spawn Worldgem Bit)
endif
elseif (<type>==t_spawn_item)
if (<serv.itemdef.<more1>>) || (<serv.template.<more1>>)
message (Item Spawn: <more1>)
else
message (Invalid Spawn Worldgem Bit)
endif
endif
message (Amount: <amount> MinDist: <strarg <morep>> MaxDist: <strarg <streat <morep>>> Distance: <strarg <streat <streat <morep>>>>)
return 1
That or you have some invisible items somewhere, either under <p.terrain.z> or high above where someone would not normally notice, or maybe you have some nongen or memory items somewhere. Use this command to see if something is hidden:
and nuke the sector, this will not remove any items, it will force the command 'say x' on any item.
"I ask a question to the answer I already know."
Marchadium :: http://www.marchadium.ca/ :: Join us!
(This post was last modified: 09-29-2012 05:21 AM by Skul.)
|
|
09-29-2012 05:20 AM |
|
|