Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Renegade Discussions » Mod Forum » how do i put this in ma script.dll
how do i put this in ma script.dll [message #237578] Sat, 06 January 2007 10:42 Go to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
hey i got this new mod for ma server only i gotta put it in ma script.dll file hod do i do that its text only so i cant copy paste the mod notepad wont work


MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #237603 is a reply to message #237578] Sat, 06 January 2007 14:21 Go to previous messageGo to next message
Cat998
Messages: 1081
Registered: January 2004
Location: Austria, Vienna
Karma: 0
General (1 Star)
Moderator/Captain

?

When people ask me "Plz" just because it's shorter than "Please" I feel perfectly justified to answer "No" because it's shorter then "Yes"

Programming is like sex: one mistake and you have to support it for the rest of your life

Want the best answers? Ask the best questions!

"So long, and thanks for all the fish."
Re: how do i put this in ma script.dll [message #237604 is a reply to message #237603] Sat, 06 January 2007 14:22 Go to previous messageGo to next message
Ryu is currently offline  Ryu
Messages: 2833
Registered: September 2006
Location: Liverpool, England.
Karma: 0
General (2 Stars)

Cat998 wrote on Sat, 06 January 2007 15:21

?



Presence is a curious thing, if you think you need to prove it... you probably never had it in the first place.
Re: how do i put this in ma script.dll [message #237610 is a reply to message #237578] Sat, 06 January 2007 14:55 Go to previous messageGo to next message
icedog90 is currently offline  icedog90
Messages: 3483
Registered: April 2003
Karma: 0
General (3 Stars)
He doesn't natively speak english, he's dutch. If you take like 5 extra seconds to read it's understandable.
Re: how do i put this in ma script.dll [message #237613 is a reply to message #237578] Sat, 06 January 2007 15:01 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
what kind of 'mod' needs to go in scripts.dll ?

http://steamsignature.com/card/1/76561197975867233.png
Re: how do i put this in ma script.dll [message #237614 is a reply to message #237578] Sat, 06 January 2007 15:03 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
I've seen the text document he's got and basically it will listen for "!build turret" and build the turret where the player is. Unfortunately, my knowledge in C++ is insufficient to help him.
Re: how do i put this in ma script.dll [message #237633 is a reply to message #237578] Sat, 06 January 2007 15:57 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
surely the person who made the scripts will have released it as a plain .dll file? He has obviously got the source code instead of the actual scripts somehow...

http://steamsignature.com/card/1/76561197975867233.png
Re: how do i put this in ma script.dll [message #237648 is a reply to message #237578] Sat, 06 January 2007 17:56 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
I believe the person who made the scrips is Kamuix, i told klote to ask him for it but he kept pestering me to compile them...

[Updated on: Sat, 06 January 2007 17:57]

Report message to a moderator

Re: how do i put this in ma script.dll [message #237792 is a reply to message #237578] Sun, 07 January 2007 09:33 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
well i do not know how to contact kamuix as i have never spoke to him i got this mod from cdcyborg and he doesnt know whot to do with it right now im asking nightma12 to help me hopefully he can help here is the text mod
i got



else if (stricmp(Msg2,"!Build Turret") == 0) {
Vector3 spawn_position;
float cost = 600.0f;
char message[256];
t = 0;
GameObject *obj = Get_GameObj(ID);
if (Get_Object_Type(obj) == 0) {
if (cost <= Get_Money(ID)) {
Vector3 Pos = Commands->Get_Position(obj);
Pos.Z += 0;
Commands->Disable_Physical_Collisions(Commands->Create_Object("Nod_Turret_MP_Improved ",Pos));
Commands->Give_Money(obj,cost*-1.0f,false); //Commands->Apply_Damage(obj,99999,"Death",false); //Was this here to stop the player from getting stuck in the guard tower? disabling collisions on the guard tower is a better solution.
sprintf(message,"msg [KB] Player %s Has deployed a Nod Turret",Get_Player_Name_By_ID(ID));
Console_Input(message);
}
else if (cost > Get_Money(ID)) {
sprintf(message2,"ppage %d Sorry, the Nod Turret $600",ID);
Console_Input(message2);
}
else if (Get_Object_Type(obj) == 0) {
sprintf(message2,"ppage %d Test",ID);
Console_Input(message2);
}
}

i hope u can explain me whut to do with it >.<


MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #237801 is a reply to message #237578] Sun, 07 January 2007 10:36 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
Lee doesn't know C++ so there's no point giving it to him.
Re: how do i put this in ma script.dll [message #237843 is a reply to message #237578] Sun, 07 January 2007 16:50 Go to previous messageGo to next message
sycar is currently offline  sycar
Messages: 144
Registered: February 2006
Location: Reading, UK
Karma: 0
Recruit
What version of scripts.dll do you want it built into and I'll do it for you. I can't do 3.0 or 3.1 at the moment as i only have VS.net. Haven't upgraded yet, but anything before that or SSAOW i can compile into it for you.
Re: how do i put this in ma script.dll [message #237850 is a reply to message #237843] Sun, 07 January 2007 17:44 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
the ssaow 1 pleas thank u verry mutch btw i really wanted that mod ^-^

MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #237851 is a reply to message #237578] Sun, 07 January 2007 17:46 Go to previous messageGo to next message
SeargentSarg is currently offline  SeargentSarg
Messages: 478
Registered: November 2006
Karma: 0
Commander
Lmfao. Still in that gay clan klote?

Re: how do i put this in ma script.dll [message #237856 is a reply to message #237578] Sun, 07 January 2007 18:48 Go to previous messageGo to next message
Kamuix is currently offline  Kamuix
Messages: 1247
Registered: May 2005
Location: Ontario, Canada
Karma: 0
General (1 Star)
That's not even my code lols, You can contact me at Obelisklaser@hotmail.com. if you did not get that code from WD i don't know where you got it....But than again I probably just forgot something I gave away awhile ago
Re: how do i put this in ma script.dll [message #237897 is a reply to message #237578] Mon, 08 January 2007 01:07 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
Kam, don't capitalize your e-mail address, it'll make it incorrect (unless you're hoping to do that Wink)

He got the script from cdcyborg, but i thought he got it from you, my mistake.
Re: how do i put this in ma script.dll [message #237949 is a reply to message #237578] Mon, 08 January 2007 04:41 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
kam lol that code is urs cdcyborg got it from u a looong time ago

and no im not in a clan any more


MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #237986 is a reply to message #237578] Mon, 08 January 2007 09:03 Go to previous messageGo to next message
jnz is currently offline  jnz
Messages: 3396
Registered: July 2006
Location: 30th century
Karma: 0
General (3 Stars)
here ya go, i can't test it because i don't have renegade atm. its SSAOW ported to scripts 3.2 with your turret program in it Very Happy


If you want the sources i will send them to you. i didn't want tp put them in this zip because it would make it messy.

to build a turret you need 600 cred and you need to type "!Build Turret" (case sensitive)

[Updated on: Mon, 08 January 2007 09:04]

Report message to a moderator

Re: how do i put this in ma script.dll [message #238008 is a reply to message #237578] Mon, 08 January 2007 10:32 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
ma fds wont start any more after i installed the stuff u gave me it says cant finde shaders.dll and i trayed to change shaders.sdb into dll but then it says some thing with a path to some where any ways its not workin and bhs.dll wont load whuts wrong??

MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #238010 is a reply to message #237986] Mon, 08 January 2007 10:35 Go to previous messageGo to next message
Cat998
Messages: 1081
Registered: January 2004
Location: Austria, Vienna
Karma: 0
General (1 Star)
Moderator/Captain

gamemodding wrote on Mon, 08 January 2007 17:03

here ya go, i can't test it because i don't have renegade atm. its SSAOW ported to scripts 3.2 with your turret program in it Very Happy


If you want the sources i will send them to you. i didn't want tp put them in this zip because it would make it messy.

to build a turret you need 600 cred and you need to type "!Build Turret" (case sensitive)


Scripts 3.2 ? Surprised
remember it's SSAOW, not SSAO


When people ask me "Plz" just because it's shorter than "Please" I feel perfectly justified to answer "No" because it's shorter then "Yes"

Programming is like sex: one mistake and you have to support it for the rest of your life

Want the best answers? Ask the best questions!

"So long, and thanks for all the fish."
Re: how do i put this in ma script.dll [message #238058 is a reply to message #237578] Mon, 08 January 2007 13:47 Go to previous messageGo to next message
jnz is currently offline  jnz
Messages: 3396
Registered: July 2006
Location: 30th century
Karma: 0
General (3 Stars)
heh, lol... i was in a rush, i was late for school hehe. yes its scripts 3.2, been needing SSAOW in it for the Seye.

and im sorry, i forgot to put shaders.dll in the zip. just unzip, and place all the files in your FDS folder.
Re: how do i put this in ma script.dll [message #238065 is a reply to message #237578] Mon, 08 January 2007 14:29 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
i think u missed another file i have the same error now but this time for the file d3dx9_30.dll is this normal??

MESS WITH MA CLAN MESS WITH ME U.....

lol
Re: how do i put this in ma script.dll [message #238071 is a reply to message #237578] Mon, 08 January 2007 14:46 Go to previous messageGo to next message
jnz is currently offline  jnz
Messages: 3396
Registered: July 2006
Location: 30th century
Karma: 0
General (3 Stars)
you need to install direct X. not me this time Razz

http://www.dll-files.com/dllindex/dll-files.shtml?d3dx9_30


put this dll in the same dir as scripts.dll it should work fine then.
Re: how do i put this in ma script.dll [message #238076 is a reply to message #237578] Mon, 08 January 2007 14:56 Go to previous messageGo to next message
klote2314 is currently offline  klote2314
Messages: 66
Registered: November 2005
Location: im am dutch
Karma: 0
Recruit
mehh the server keeps reboooting lol whots wrong this time -_-:

gamemodder can u send me ur msn so we can talk live on there


MESS WITH MA CLAN MESS WITH ME U.....

lol

[Updated on: Mon, 08 January 2007 14:58]

Report message to a moderator

Re: how do i put this in ma script.dll [message #262997 is a reply to message #237986] Mon, 04 June 2007 02:11 Go to previous message
wittebolx is currently offline  wittebolx
Messages: 332
Registered: May 2007
Location: the netherlands
Karma: 0
Recruit
i have the same problem with scripts3.2_SSAOW_turrets

the server keeps restarting? how do i fixed that?


Previous Topic: Scripts
Next Topic: Mixing an Flying Map?
Goto Forum:
  


Current Time: Thu May 23 11:17:09 MST 2024

Total time taken to generate the page: 1.17961 seconds