Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Renegade Discussions » Mod Forum » how do i do these
how do i do these [message #266537] Fri, 15 June 2007 14:32 Go to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
how do i nake there be a explosion animation when hot/tech die?there is only a invisible explosion.

and can i make hover bikes(flying recons) server side?

and how do i get kill messages to appear? they only appear on the server bots screen and the fds screen

and how do i set the area where vehicles appear when you buy them?

[Updated on: Fri, 15 June 2007 14:34]

Report message to a moderator

Re: how do i do these [message #266558 is a reply to message #266537] Fri, 15 June 2007 16:06 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
for the explosion animation do i have to add a script to the chars i want to have a explosion animation for?

for the hover bike do i add a script like jfw_flying_infantry to the recon or is there 1 like it for vehicles?

also how do i use building controlers?

how do make buildingshave the abilty to be damaged?

i not trying to make the mp building damagable but are the sp versions of the buildings invinceable or are all buildings invincible?
Re: how do i do these [message #266605 is a reply to message #266537] Sat, 16 June 2007 03:30 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
for the place i set where vehicles appear do i use vehicle construction zones?

any ideas?
Re: how do i do these [message #266621 is a reply to message #266605] Sat, 16 June 2007 05:57 Go to previous messageGo to next message
HORQWER is currently offline  HORQWER
Messages: 667
Registered: September 2006
Location: Under my bed (lolz)
Karma: 0
Colonel
u drag the little car where u want to vehicle to be constructed u could find it at the circle thing on air strip or inside of weapons factory where vehicles construct
if u making a map that does not have air strip, wepfactory (if u are making ur own map)
just build it from the building preset list (i'm sure u could find it) and when u deploy it select it and hit Ctrl+P and that little car appears there put it where ever u want it to be
have fun
(HORQWER In Renegade Hope U Know Me Rocked Over )


http://www.roleplay2.com/downloads/siggy.jpg

[Updated on: Sat, 16 June 2007 06:00]

Report message to a moderator

Re: how do i do these [message #266626 is a reply to message #266537] Sat, 16 June 2007 06:15 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
NFHAVOC wrote on Fri, 15 June 2007 17:32

how do i nake there be a explosion animation when hot/tech die?there is only a invisible explosion.


I do not know of an existing script that allows you to declare explosion you want and attach it to a player, I could just not of noticed it beofre but I think it doesn;t exist. That's not to say it isn't possible, if you open the source code to SSAOW and on the void M00_GrantPowerup_Created::Killed(GameObject *obj, GameObject *shooter)
{
script add a couple of lines so it looks like this:

void M00_GrantPowerup_Created::Killed(GameObject *obj, GameObject *shooter)
{

if (strstr(Commands->Get_Preset_Name(obj),"CnC_GDI_Engineer_2SF"))
{
DeathPlace = Commands->Get_Position(obj);
Commands->Create_Object("Beacon_Ion_Cannon_Anim_Post",DeathPlace);
}

	if (stricmp(Get_Parameter("WeaponDef"),"POW_Pistol_Player") == 0)
	{
		

That will create an ion explosion animation when the hotwire dies, you should from that be able to add your own code for the technician.

NFHAVOC wrote on Fri, 15 June 2007 17:32


and can i make hover bikes(flying recons) server side?



Hmm, try changing there mass in the presets tree in level edit, it will be a case of trial and error but you may get the desired effect. Assuming that is that mass is controlled server side for vehichles, I have never tried.

NFHAVOC wrote on Fri, 15 June 2007 17:32


and how do i get kill messages to appear? they only appear on the server bots screen and the fds screen


Do a console_input on the [msg] that is created, this will msg it to the server too

NFHAVOC wrote on Fri, 15 June 2007 17:32


and how do i set the area where vehicles appear when you buy them?


Move the little car thing that is attached to the building controller to where you want it to create the vehichle.



[Updated on: Sat, 16 June 2007 06:16]

Report message to a moderator

Re: how do i do these [message #266684 is a reply to message #266537] Sat, 16 June 2007 11:53 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
could you explain the message thing in more detail i still can t figure it out


i dont have ssaow i have ssctf. how do i edit that?
and where can i get something to edit that?
Re: how do i do these [message #266732 is a reply to message #266537] Sat, 16 June 2007 16:24 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
In ssctf the "void M00_GrantPowerup_Created::Killed(GameObject *obj, GameObject *shooter) {" still exists there, so my suggestion applies to both source code versions.

The msg thing...

For SSCTF do a ConsoleCommand not a console_input. Basically where you have a sprintf msg to the server, just do a ConsoleCommand(msgname) and it will appear as a msg ingame too.



Re: how do i do these [message #266875 is a reply to message #266537] Sun, 17 June 2007 12:29 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
ok i still dont see how i could do the msg thing

and where so i get something to edit the code of the ssctf
Re: how do i do these [message #266941 is a reply to message #266875] Sun, 17 June 2007 23:20 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
NFHAVOC wrote on Sun, 17 June 2007 15:29

ok i still dont see how i could do the msg thing

and where so i get something to edit the code of the ssctf


You will need visualstudios.net2005, there is an express edition on the microsoft website you can download for free.



Re: how do i do these [message #266970 is a reply to message #266537] Mon, 18 June 2007 04:35 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
where is it on the site
Re: how do i do these [message #266972 is a reply to message #266537] Mon, 18 June 2007 04:40 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
http://msdn.microsoft.com/vstudio/express/downloads/

You want the yellow coloured one that has "c++" on it.



Re: how do i do these [message #267008 is a reply to message #266537] Mon, 18 June 2007 09:35 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
i trying to get it but when i go to click go the "The page cannot be displayed" pops up
Re: how do i do these [message #267062 is a reply to message #266537] Mon, 18 June 2007 13:59 Go to previous messageGo to next message
Xpert is currently offline  Xpert
Messages: 1588
Registered: December 2005
Location: New York City
Karma: 0
General (1 Star)
Do you even know how to code because judging by your understanding of what Reborn is saying, you don't understand he's showing you C++ code to implement into your scripts.dll for CTF. You would have to edit the source codes.

Secondly, what bot are you using? If you're using CS, I made a ctf.cs file to read SSCTF kill messages since Adad doesn't support SSCTF for CS.


http://i32.photobucket.com/albums/d42/XpertMaverick/xpertyankee.jpg

Creator of NetGuard, an IRC network regulator.
Developer of the CloudyServ 0.982-X project.
Developer of the CloudyServ Ren-X bot.

Part time streamer - https://twitch.tv/gg_wonder
Re: how do i do these [message #267247 is a reply to message #266537] Tue, 19 June 2007 04:47 Go to previous messageGo to next message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
i got a c in introduction to c++ and i got my c++ book right here and i will back up files if i screw my server

and i wont do anything past what reborn told me to do

i got nr as a bot
Re: how do i do these [message #267249 is a reply to message #267008] Tue, 19 June 2007 04:50 Go to previous messageGo to next message
reborn is currently offline  reborn
Messages: 3231
Registered: September 2004
Location: uk - london
Karma: 0
General (3 Stars)
NFHAVOC wrote on Mon, 18 June 2007 12:35

i trying to get it but when i go to click go the "The page cannot be displayed" pops up


I select "english" as the laguage, then press "go". It works for me :-/



Re: how do i do these [message #267287 is a reply to message #266537] Tue, 19 June 2007 09:27 Go to previous message
NFHAVOC
Messages: 93
Registered: March 2007
Karma: 0
Recruit
i tryed several times and it still wont work
Previous Topic: Create on poke
Next Topic: Generals: First Hour
Goto Forum:
  


Current Time: Mon Nov 11 01:48:34 MST 2024

Total time taken to generate the page: 0.01223 seconds