- Joined
- Dec 22, 2007
- Messages
- 160
- Reaction score
- 27
Re: Dragon [swf] [sql]
in catalog.cs add:
in rooms.cs, under:
add:
... oops set it above this
Code:else { GetResponse().AppendStringWithBreak("a0 pet10"); count = 14; petid = 10; }
---------- Post added at 06:45 PM ---------- Previous post was at 06:40 PM ----------
i don't read this part; ( if (PetType.Length == 8 ) ... i'm tired.
in catalog.cs add:
Code:
case "9465":
PetType = 12; // Dragon
break;
in rooms.cs, under:
Code:
if (PetType.Length == 8)
{
if (PetType[7] == '1')
{
GetResponse().AppendStringWithBreak("a0 pet11");
count = 010;
petid = 11;
}
}
add:
Code:
if (PetType.Length == 8)
{
if (PetType[7] == '2')
{
GetResponse().AppendStringWithBreak("a0 pet12");
count = 008;
petid = 12;
}
}

