• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Ep 11 Source Code

Banned
Banned
Joined
Sep 5, 2011
Messages
411
Reaction score
10
hi sir! anyone here help me where to fix the icon on the top of the scoreboard of SCHOOL WAR, icon for the school who captured the tower? help please!
 
Skilled Illusionist
Joined
Sep 22, 2014
Messages
374
Reaction score
16
hi sir! anyone here help me where to fix the icon on the top of the scoreboard of SCHOOL WAR, icon for the school who captured the tower? help please!
find in ctfinfodisplay.cpp
Code:
[COLOR=#666666]case 1:[/COLOR]	{
		for( int i=0;i<4;i++)
		{
			m_pCtfMark0[i]->SetVisibleSingle ( FALSE );
		}
		switch( emOWNER )
		{
			default: m_pCtfMark0[0]->SetVisibleSingle ( TRUE );	break;
			case 0:	m_pCtfMark0[1]->SetVisibleSingle ( TRUE );	break;
			case 1:	m_pCtfMark0[2]->SetVisibleSingle ( TRUE );	break;
			case 2:	m_pCtfMark0[3]->SetVisibleSingle ( TRUE );	break;
		}		
	}break;
case 2:
	{
		for( int i=0;i<4;i++)
		{
			m_pCtfMark1[i]->SetVisibleSingle ( FALSE );
		}
		switch( emOWNER )
		{
			default: m_pCtfMark1[0]->SetVisibleSingle ( TRUE );	break;
			case 0:	m_pCtfMark1[1]->SetVisibleSingle ( TRUE );	break;
			case 1:	m_pCtfMark1[2]->SetVisibleSingle ( TRUE );	break;
			case 2:	m_pCtfMark1[3]->SetVisibleSingle ( TRUE );	break;
		}		
	}break;
case 3:
	{
		for( int i=0;i<4;i++)
		{
			m_pCtfMark2[i]->SetVisibleSingle ( FALSE );
		}
		switch( emOWNER )
		{
			default: m_pCtfMark2[0]->SetVisibleSingle ( TRUE );	break;
			case 0:	m_pCtfMark2[1]->SetVisibleSingle ( TRUE );	break;
			case 1:	m_pCtfMark2[2]->SetVisibleSingle ( TRUE );	break;
			case 2:	m_pCtfMark2[3]->SetVisibleSingle ( TRUE );	break;
		}		
	}break;
[COLOR=#666666]}[/COLOR]
and change case 1 , 2 , 3 to 29 , 30 , 31
 
Joined
Sep 22, 2009
Messages
582
Reaction score
35
Is there any ways of fast compiling using this source? Its take 30 minutes plus to compile it ~,~



Better to disable sealed card, or better to fix and use tae but you will having time to fix because its build vs2003.
 
*Retired
Joined
Mar 23, 2012
Messages
609
Reaction score
77
@allen003 high-end cpu would do the trick or try importing it to 2008-higher

btw disable wrap, seal function since there is no fix to it yet
 
*Retired
Joined
Mar 23, 2012
Messages
609
Reaction score
77
if u plan on importing this to 2008 don't bother so much time would be lost and there is some downside as well
I believe there's already a thread with a source running in 2008, sry too lazy too link it
 
Joined
Oct 2, 2010
Messages
1,771
Reaction score
228
If you are planning to use this in VS2008 you still have to think about the Legacy thing.

This source was my test thing, don't know how come it leaked, the structure of interface.

Screenshot tested on VS2008 (September 17,2016):
TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums


most annoying thing there is the runtime bug and pay attention with different c++ standards
 
Last edited:
Back
Top