albertoilmodder
Junior Member
Posts: 29
Threads: 6
Joined: Aug 2013
Reputation:
0
|
HELP MODDER!
Excuse me by the way I talk but I'm Italian and I am translating, I'm doing a mod of amnesia, in a piece there are those things that I would like to dissolve sticky red with the acid, but I do not know the full script with all the special effects and also what to do in the LevelEditor. HELP AT ALL Modder MI CAN SAY THE SCRIPT AND HOW TO DO WITH THE EFFECTS! The acid is called "acido1" sticky blood and what is called "organico1."
Thanks in advance
|
|
08-14-2013, 01:09 PM |
|
Slanderous
Posting Freak
Posts: 1,606
Threads: 78
Joined: Dec 2012
Reputation:
63
|
RE: HELP MODDER!
Excuse me, sir but I don't know what the hell are you talking about. Explain me this brighter. Also, wrong section
EDIT:
Allright, Do you want to make this?
- Player uses acid on the "red thing" and then it disappears?
(This post was last modified: 08-14-2013, 01:19 PM by Slanderous.)
|
|
08-14-2013, 01:17 PM |
|
albertoilmodder
Junior Member
Posts: 29
Threads: 6
Joined: Aug 2013
Reputation:
0
|
RE: HELP MODDER!
I did not understand. Once there, what do I do?
|
|
08-14-2013, 02:06 PM |
|
Traggey
is mildly amused
Posts: 3,257
Threads: 74
Joined: Feb 2012
Reputation:
185
|
RE: HELP MODDER!
Oh language barriers, this is going to be hard if you do not speak english.
|
|
08-14-2013, 11:54 PM |
|
Artyom
Senior Member
Posts: 370
Threads: 27
Joined: Jul 2012
Reputation:
11
|
RE: HELP MODDER!
I think I know what you want to do but It'd be very difficult to explain if you can't speak english properly...
He wants to make a acid+web=dissolve web the same as in the level right before the water part in vanilla amnesia.
|
|
08-15-2013, 12:10 AM |
|
Daemian
Posting Freak
Posts: 1,129
Threads: 42
Joined: Dec 2012
Reputation:
49
|
RE: HELP MODDER!
AJhhahah
Reminds me of this
(This post was last modified: 08-15-2013, 01:23 AM by Daemian.)
|
|
08-15-2013, 01:20 AM |
|
The chaser
Posting Freak
Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation:
113
|
RE: HELP MODDER!
Easy:
void OnStart()
{
AddUseItemCallback("", "acido1", organico1", "Dissolve", true);
}
void Dissolve (string &in asItem, string &in asEntity)
{
SetPropActiveAndFade("organico1", false, 3);
}
THE OTHERWORLD (WIP)
Aculy iz dolan.
|
|
08-15-2013, 10:35 AM |
|
albertoilmodder
Junior Member
Posts: 29
Threads: 6
Joined: Aug 2013
Reputation:
0
|
RE: HELP MODDER!
Thank you, The chaser
|
|
08-15-2013, 12:34 PM |
|
Adrianis
Senior Member
Posts: 620
Threads: 6
Joined: Feb 2012
Reputation:
27
|
RE: HELP MODDER!
Heads up Chaser
AddUseItemCallback("", "acido1", "organico1", "Dissolve", true);
You're missing a " before organico1. If the script is copy & pasted, albertoilmodder's going to come back with an error
(This post was last modified: 08-15-2013, 12:47 PM by Adrianis.)
|
|
08-15-2013, 12:47 PM |
|
albertoilmodder
Junior Member
Posts: 29
Threads: 6
Joined: Aug 2013
Reputation:
0
|
Script Amnesia
Hello everyone and sorry for my english, I'm Italian and I'm creating a Mod Amnesia and I know a few scripts to use, I need some beautiful, interesting that might be in a mod, can you please write in and explain what it is for each ? Thanks in advance!
|
|
08-15-2013, 07:46 PM |
|
|