Post: Sprx code help
01-07-2018, 08:00 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); i have a few sprx request ..


non-host
------------------------------------------
pick class at start of game
freeze my movement (have my reasons) -i tried CCommand with no luck
keep buttons from being presses when menu is open


and convert this from c# to c++


     public static byte[] Multiply(this byte[] A, byte[] B)
{
List<byte> ans = new List<byte>();

byte ov, res;
int idx = 0;
for (int i = 0; i < A.Length; i++)
{
ov = 0;
for (int j = 0; j < B.Length; j++)
{
short result = (short)(A[i] * B[j] + ov);
ov = (byte)(result >> Cool Man (aka Tustin);
res = (byte)result;
idx = i + j;
if (idx < (ans.Count))
ans = _add_(ans, res, idx);
else ans.Add(res);
}
if (ov > 0)
if (idx + 1 < (ans.Count))
ans = _add_(ans, ov, idx + 1);
else ans.Add(ov);
}

return ans.ToArray();
}




and last im look someone to show me the ropes on IDA who knows it well and don't mind teaching

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo