Delay before hide

07/24/2009 06:31 haollo#1
//##### Asur-Strike#####
setlength(SendRecvList,1);
setlength(SendRecvList[0].RecvHex,2);
SendRecvList[0].RecvHex[0] := '0F0100000';
SendRecvList[0].RecvHex[1] := ID;
SendRecvList[0].SendHex := HidePacket;
SendRecvList[0].count := 1;
SendIfMatch(buf,len,pSendWs1,SendRecvList);


This is part of an azura-hide filter I use.

What should I add to it , to let it sleep 200ms before activating hide when azura is detected.

My goal is to avoid ruwach-azura.

Also, it will be nice to show me , where I can learn more about the different commands used in rpe scripts. Is there a Help File to learn more?
07/27/2009 02:56 ChibiEbil#2
If rpe uses the delphi language, the command to let it wait 200 ms would be
Sleep(200);

Hideki
07/27/2009 20:29 haollo#3
Ya, I know the pascal sleep is sleep ();

But how would you add it to this specific SendIfMatch filter?