Author Topic: How do you latterly MAKE events like...  (Read 1242 times)

I was wondering what kin d of system thing would you use to make events cus I was wondering if I could make something like ( example below) and if someone could make it for me that would be great it's part of the moneymod

Onactive> Self> payfor> 950 ( this parts already made)
Onpaysuccess> self> spawnitem [1 or 2 or 3...6]
On1> self> spawnitem> hammer
On2> self> spawnitem> hammer
On3> self> spawnitem> hammer
On4> self> spawnitem> hammer
On5> self> spawnitem> hammer
On6> self> spawnitem> hammer
Something like that and if you did make it I will be the happiest man alive
Plz and thank you and plz rate idea..

Yes I know I spelled litterly wrong but on my iPod I can't edit

Code: [Select]
0 | onActivate | Self | VCE_ifValue | <var:cl:payfor> | == | 950 | 1 3
1 | onVariableTrue | Client | VCE_modVariable | payfor | Subtract | 950
2 | onVariableTrue | Player | addItem | Hammer
3 | onVariableFalse | Client | CenterPrint | Woops! You need to have at least $950 to get a hammer! | 3

I'm not sure if addItem is a stock event or an add-on.
Also, you can't force a hammer to suddenly fly out of a brick.

I don't get the first line of events and is this include the money mod or VCE cash
Oh and can you only do one item?

But my main questions were could you post a link to the thing were you make events and or could somen do it for me

I don't get the first line of events and is this include the money mod or VCE cash
Oh and can you only do one item?
It's VCE.
You could go more than 5, but since you only have 5 inventory slots, there's really no point in going to 6+ items.

But my main questions were could you post a link to the thing were you make events and or could somen do it for me
What do you mean by that? I just did the events for you.

No I mean make events as in create something like what I put and post it and also you don't get my 1 2. 3...6. Thing it means if the random number is 1 you get the 1 item and so on also I knew it was vce but what did the thing before the 950 mean?

No I mean make events as in create something like what I put and post it and also you don't get my 1 2. 3...6. Thing it means if the random number is 1 you get the 1 item and so on also I knew it was vce but what did the thing before the 950 mean?
Oh, ok.
Code: [Select]
0 | onActivate | Self | VCE_ifValue | <var:cl:payfor> | == | 950 | 1 5
1 | onVariableTrue | Client | VCE_modVariable | payfor | Subtract | 950
2 | onVariableTrue | Self | VCE_modVariable | randomness | set | 1
3 | onVariableTrue | Self | VCE_modVariable | randomness | randomNum | 6
4 | onVariableFalse | Client | CenterPrint | Woops! You need to have at least $950 to get a hammer! | 3
5 | onVariableTrue | Self | VCE_ifValue | <var:br:randomness> | == | 1 | 6 7
6 | onVariableTrue | Player | addItem | Hammer
7 | onVariableFalse | Self | VCE_ifValue | <var:br:randomness> | == | 2 | 8 9
8 | onVariableTrue | Player | addItem | Hammer
9 | onVariableFalse | Self | VCE_ifValue | <var:br:randomness> | == | 3 | 10 11
10 | onVariableTrue | Player | addItem | Hammer
11 | onVariableFalse | Self | VCE_ifValue | <var:br:randomness> | == | 4 | 12 13
12 | onVariableTrue | Player | addItem | Hammer
13 | onVariableFalse | Self | VCE_ifValue | <var:br:randomness> | == | 5 | 14 15
14 | onVariableTrue | Player | addItem | Hammer
15 | onVariableFalse | Self | VCE_ifValue | <var:br:randomness> | == | 6 | 16 16
16 | onVariableTrue | Player | addItem | Hammer

The "thing before the 950" is ==. That's just another way of saying "is equal to".

...be smart I'm not that stupid I know what the == sign is I'm talking about the thing before that and plz just tell me the link to how to make events fwi I'm talking about how to make events as in I want to create the things you post on the forum

...be smart I'm not that stupid I know what the == sign is I'm talking about the thing before that and plz just tell me the link to how to make events fwi I'm talking about how to make events as in I want to create the things you post on the forum
It's not a simple site that you go to.

I kind of figured that you download system

I kind of figured that you download system
you dont download a program to make events. You use a text editor and script them. It's not a program you type in 'make event that gives you jets'.

Ok sod you have it or are you wasting my time( I don't want to be rude)