View Single Post
  #8  
Old 01-26-2003, 11:57 AM
Auldar
Sarnak
 
Join Date: Jan 2003
Posts: 61
Default Clarification

Just to clarify..

Here's a row from Telmet's spawns.sql that defines an NPC:

npc_types (id, name, level, race, class, hp, gender, texture, helmtexture, size, loottable_id, merchant_id, face, walkspeed, runspeed)

VALUES (2247,'a_clockwork_alchemist',40,88,32,3776,0,0,0, 3,4,2247,-1,0.67,1.25);


In many other DB's, I'm seeing an extra "1" inserted between what should be (according to the db.sql's I have anyway), class and HP. So instead of looking like the above, it looks like this:

npc_types (id, name, level, race, class, ?, hp, gender, texture, helmtexture, size, loottable_id, merchant_id, face, walkspeed, runspeed)

VALUES (2247,'a_clockwork_alchemist',40,88,32,1,3776,0,0, 0,3,4,2247,-1,0.67,1.25);

I put in the ?, since I don't know what it's meant to be. Seems I don't have the same db.sql you guys are working off.'

Guess I'll keep looking for it..

-Auldar