View Single Post
  #5  
Old 09-08-2004, 08:47 PM
Branks
Sarnak
 
Join Date: May 2004
Posts: 58
Default

Minor progress, i finally made sense of some of it and now can turn AAEXP on and off and alter %s but why the list isnt showing up i believe is way over my head =(

Code:
				case OP_AAAction:
					{
						if(app->size < 1) 
						{
							break;
						}
						if(((int)app->pBuffer[0])==1)//AAexp is ON
						{
							m_pp.perAA = (int)app->pBuffer[12];
							if (m_pp.perAA<0 || m_pp.perAA>100){//sploit check
								m_pp.perAA=0;}
							SendAAStats();
							SendAATable();
						}
						else if(((int)app->pBuffer[0])==2)//AAexp is OFF
						{
							m_pp.perAA = 0;
							SendAAStats();
							SendAATable();
						}
						else 
						{
							cout << "Unknown Command in AAAction opcode: 0x" << hex << setfill('0') << setw(4) << app->opcode << dec;
							cout << " size:" << app->size << endl;
						}
						break;
					}
Reply With Quote