Re: remove loading mesh .
Re: remove loading mesh .
waht this thing do its just remove the loading mash?
Re: remove loading mesh .
XD was this necessary?... I don't think anyone will need this... especially since this has never been an issue or annoyance to anyone here.
Re: remove loading mesh .
You should comment out the whole function, not remove just the text. It is just a waste then x.x
Re: remove loading mesh .
Re: remove loading mesh .
Quote:
Originally Posted by
hotgame
esay and simple:
go to ZInitialLoading.cpp
line 258
PHP Code:
if(m_pLoadingStr && mpDC ) {
char buffer[256];
sprintf(buffer,"Loading %s ...",m_pLoadingStr);
int nWidth = mpDC->m_Font.GetTextWidth(buffer);
int x = (int)(RGetScreenWidth() * 0.5) - nWidth/2;
int y = (int)(RGetScreenHeight() * 0.9f);
mpDC->m_Font.DrawText( x, y, buffer, 0xFFCCCCCC );
}
Remove the "Loading %s ..."
its need to be like this
PHP Code:
if(m_pLoadingStr && mpDC ) {
char buffer[256];
sprintf(buffer,"",m_pLoadingStr);
int nWidth = mpDC->m_Font.GetTextWidth(buffer);
int x = (int)(RGetScreenWidth() * 0.5) - nWidth/2;
int y = (int)(RGetScreenHeight() * 0.9f);
mpDC->m_Font.DrawText( x, y, buffer, 0xFFCCCCCC );
}
Done.
%s loads the function next to it , so you need to comment the whole function.
Re: remove loading mesh .
Quote:
Originally Posted by
Wucas
You should comment out the whole function, not remove just the text. It is just a waste then x.x
Wocus for president.
Re: remove loading mesh .
Quote:
Originally Posted by
Wucas
You should comment out the whole function, not remove just the text. It is just a waste then x.x
+2342423423432
By the way , YouR saying its "Easy and simple" , So why did you open a thread about it?
http://forum.ragezone.com/f311/remov...g-mesh-896217/
Re: remove loading mesh .
Quote:
Originally Posted by
ofiritsmeeee
Because the function is easy and simple to do, and not that many people know how to read source codes.
Please quit responding such useless posts.
@Topic, I would've just allowed people to search the help threads to find that instead of posting but thats my opinion.
Re: remove loading mesh .
"remove loading mesh" no u never removed it at all, its still there, just not showing any text as you removed the output.
Said above but i like sticking my nose in :thumbup1:
The whole thing can just be removed, all it's doing for the rest of it is positioning the text lol
Re: remove loading mesh .
lol just say thanks and press like...
Re: remove loading mesh .
Quote:
Originally Posted by
hotgame
lol just say thanks and press like...
If only it was worth it.
Re: remove loading mesh .
I would vote for wucas if he was running for president
Re: remove loading mesh .
Quote:
Originally Posted by
DoomReaper
I would vote for wucas if he was running for president
trying to walk in wizkids steps..
OT:
Good, but you were too simple
also if you want to just remove "Loading Interface, mesh, etc" ... then you can just remove the %s thing and put something else
Loading YourGunZ...
as example
Re: remove loading mesh .