Hi Folks i was wondering if someone could help me with this shit, ive tryed 3 different ways and there all failing.
AND FINALY
Im using rose as a default for now just until i get it working.
Code:
if (GC.MyChar.Flowers.Lilies > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, ("#55") + Message + ("#55"));
else if (GC.MyChar.Flowers.RedRoses > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, ("#55") + Message + ("#55"));
else if (GC.MyChar.Flowers.Orchids > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, ("#55") + Message + ("#55"));
else if (GC.MyChar.Flowers.Tulips > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, ("#55") + Message + ("#55"));
else
{
Game.World.Chat(GC.MyChar, ChatType, From, To, Message);
Code:
if (GC.MyChar.Flowers.Lilies > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, "#55" + Message + "#55");
else if (GC.MyChar.Flowers.RedRoses > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, "#55" + Message + "#55");
else if (GC.MyChar.Flowers.Orchids > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, "#55" + Message + ("#55"));
else if (GC.MyChar.Flowers.Tulips > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, "#55" + Message + "#55");
else
{
Game.World.Chat(GC.MyChar, ChatType, From, To, Message);
AND FINALY
Code:
string Rose = ("#55");
Code:
if (GC.MyChar.Flowers.Lilies > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, Rose + Message + Rose);
else if (GC.MyChar.Flowers.RedRoses > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, Rose + Message + Rose);
else if (GC.MyChar.Flowers.Orchids > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, Rose + Message + Rose);
else if (GC.MyChar.Flowers.Tulips > 1)
Game.World.Chat(GC.MyChar, ChatType, From, To, Rose + Message + Rose);
else
{
Game.World.Chat(GC.MyChar, ChatType, From, To, Message);