Custom Scripts [message #319591] |
Thu, 28 February 2008 12:45 |
|
Fenrir
Messages: 17 Registered: February 2008
Karma: 0
|
Recruit |
|
|
The Renhelp.net website has a link in it's "Getting Started" section to "Custom Scripts by JonWil". What is that exactly?
|
|
|
|
Re: Custom Scripts [message #320088 is a reply to message #319591] |
Sun, 02 March 2008 16:57 |
CrAsHBaCo
Messages: 6 Registered: April 2005
Karma: 0
|
Recruit |
|
|
Umm, just wondering, I've never had the chance to come across anything that explain me the scripts. Any chance you could link me to a webpage?
(Maybe RenHelp as something for this, but I don't really understand what "the script" is all about).
|
|
|
|
|
Re: Custom Scripts [message #320163 is a reply to message #319591] |
Mon, 03 March 2008 12:10 |
CrAsHBaCo
Messages: 6 Registered: April 2005
Karma: 0
|
Recruit |
|
|
Actually, I'm pretty fine with LevelEdit itself, I was just wondering what the script file was adding to Renegade, and I found out myself.
Thanks for the help anyway.
|
|
|
|
Re: Custom Scripts [message #320271 is a reply to message #319591] |
Mon, 03 March 2008 22:47 |
Genesis2001
Messages: 1397 Registered: August 2006
Karma: 0
|
General (1 Star) |
|
|
3** things wrong with your situation cpjok:
1. You can't open a *.dll file to editing. You need to edit the source.
2. You're using a version of VC++ that is highly discouraged from being used to edit Scripts.dll. Reason: Compiler changes that make Scripts.dll un-buildable.... :/ You need VC++ 2005 to re-compile Scripts.dll.
EDIT: (noticed a 3rd thing wrong...)
3. Thirdly...You're trying to use VISUAL BASIC 2008 to edit Scripts.dll <_< Scripts.dll is not coded in VB.NET :/ (not yet at least -hehe-)
~Zack
[Updated on: Mon, 03 March 2008 22:49] Report message to a moderator
|
|
|
Re: Custom Scripts [message #320276 is a reply to message #320271] |
Tue, 04 March 2008 00:19 |
|
saberhawk
Messages: 1068 Registered: January 2006 Location: ::1
Karma: 0
|
General (1 Star) |
|
|
Zack wrote on Mon, 03 March 2008 23:47 | 3** things wrong with your situation cpjok:
1. You can't open a *.dll file to editing. You need to edit the source.
2. You're using a version of VC++ that is highly discouraged from being used to edit Scripts.dll. Reason: Compiler changes that make Scripts.dll un-buildable.... :/ You need VC++ 2005 to re-compile Scripts.dll.
EDIT: (noticed a 3rd thing wrong...)
3. Thirdly...You're trying to use VISUAL BASIC 2008 to edit Scripts.dll <_< Scripts.dll is not coded in VB.NET :/ (not yet at least -hehe-)
~Zack
|
VC2008 can build scripts.dll no problem, there's just a slight bugfix that needs to be done in engine_common.cpp.
Find:
#if (_MSC_VER == 1400)
Replace with (2 occurrences):
#if (_MSC_VER >= 1400)
|
|
|