Changing the Dll name.
Changing the Dll name.
If i change my dll name, what else do i change so my project can find it. because it just keeps serching for Irrlicht.dll but its not named that anymore.
k
I also want to do this, to avoid detection that I might be using irrlicht (even though it will be pretty obvious) I want to make my game as hack protected as possible. I am not sure how to do this but it might be something to do with the library file that you include by using pragma comment(lib, "Irrlicht.lib"). Have a look at the source of that file, and you might find your answer. Otherwise, looking around the web for this may give you your answer.
-
- Posts: 368
- Joined: Tue Aug 21, 2007 1:43 am
- Location: The Middle of Nowhere
I'm just going to mention, if you care about your client being hacked, then you are going about you entire network scheme horribly wrong. If it's not a multiplayer game, then why would you ever care if your client gets hacked?
rogerborg wrote:Every time someone learns to use a debugger, an angel gets their wings.
-
- Posts: 299
- Joined: Mon Nov 27, 2006 6:52 pm
- Location: GERMANY
- Contact:
Re: k
And how would you achieve that by simply changing the dll's name?jhend60 wrote:[...] I want to make my game as hack protected as possible. [...]
If you dont want others to cheat in your game then try to find out how they do it and think of a way to stop it, but only if its a multiplayer game...else if its a single player game dont waste your time on bullet proofing your game...
C++ is not the Magdalena...it takes patience...shes like the well aged prostitute, it takes years to learn her tricks! she is cruel...laughs at you when you are naked...
Life of a programmer == Const abuse
Life of a programmer == Const abuse
-
- Admin
- Posts: 3590
- Joined: Mon Oct 09, 2006 9:36 am
- Location: Scotland - gonnae no slag aff mah Engleesh
- Contact:
Using Microsoft Visual C++ 2005 (the other versions should be similar)
In your application, link against foo.lib instead of Irrlicht.lib
Code: Select all
Right click on the Irrlicht project and select Properties
Select:
Configuration Properties
Linker
General
Output File <--- change this to e.g. foo.dll
Advanced
Import Library <-- change this to e.g. foo.lib
Please upload candidate patches to the tracker.
Need help now? IRC to #irrlicht on irc.freenode.net
How To Ask Questions The Smart Way
Need help now? IRC to #irrlicht on irc.freenode.net
How To Ask Questions The Smart Way