I have been searching for some updated examples of using any insim/outsim/outgauge library with vb.net. Can anyone post some sample code to get me started? Thanks.
public int GetConnIdx(int UNID)
{
for (int i = 0; i < Connections.Count; i++)
{
if (Connections[i].UniqueID == UNID) { return i; }
}
return 0;
}
public int GetConnIdx2(int PLID)
{
for (int i = 0; i < Connections.Count; i++)
{
if (Connections[i].PlayerId == PLID) { return i; }
}
return 0;
}
<?php
InSim.Send(new ButtonPacket { info })
?>