PDA

View Full Version : IS_VTN Question


akoolrolla23
6th December 2010, 18:26
Hello guys although its another nooby question.

when I send a IS_VTN for vote call in END RACE or RESTART RACE I need to know how to cancel it as it cancels the vote call. i tried to use VTC to cancel it but it doesn't work :schwitz:

C# in LFS_External Library.

Thanks :)

NotAnIllusion
6th December 2010, 19:14
// You can instruct LFS host to cancel a vote using an IS_TINY

// ReqI : 0
// SubT : TINY_VTC (VoTe Cancel)

// IS_TINY - used for various requests, replies and reports

struct IS_TINY // General purpose 4 byte packet
{
byte Size; // 4
byte Type; // 3
byte ReqI; // 0
byte SubT; // 5 (tiny_vtc)
};
How to send that using LFS_External, I don't know, but the packet is what I use to cancel restart votes.