Problems with Bots (Butterstorm)

Wouto

Posting Freak
FindRetros Moderator
May 31, 2011
750
305
Hi,

I've started using Butterstorm a few weeks ago and just yesterday I noticed there was a problem with room bots. When ever I place a bot in the room, I can't enter the room and get a black screen. It's really stressing me out because I need these bots for my RP. Does anyone know how to fix this or what's causing this?

Thanks.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
I didn't know of this till now, just fixed it myself too, follow this:

1) Go to 'RoomUser.cs'
2) Find 'internal void Serialize(ServerMessage Message, bool gotPublicRoom)'
3) You may have something similar to this
PHP:
Message.AppendStringWithBreak(BotData.Look.ToLower() + ((PetData.HaveSaddle) ? " 3 2 -1 1 3 -1 1 4 9 0" : " 2 2 -1 1 3 -1 1"));

Replace that with this;

PHP:
if (BotData.AiType == AIType.Pet)
Message.AppendStringWithBreak(BotData.Look.ToLower() + ((PetData.HaveSaddle) ? " 3 2 -1 1 3 -1 1 4 9 0" : " 2 2 -1 1 3 -1 1"));
else
Message.AppendStringWithBreak(BotData.Look.ToLower());

4) Debug.

Also, there is a bug with talking, but I've edited somewhat much of how mine works, so might not be able to help you on that, yet but I need to fix that myself too.
 

Users who are viewing this thread

Top