mIRC Home    About    Download    Register    News    Help

Print Thread
#249091 14/11/14 02:41 PM
Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
All my scripts work perfectly when they are by themselves (multiple scripts in remote loaded) but I want to combine all my scripts into one big remote script (only need to load one) as I am going to be running bots for multiple channels and it would be a lot easier to just have to load one big script. I have tried combining them into one big script but they stop working.

Is there a way to combine all my scripts and have them all working?

Thank you.

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
Yes it is. but we must see your scripts to merge them, also this project on an large file of scripts will be take too much time to do and also the testing too but if anyone has the time to do it its ok.


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
Would you be able to combine my scripts so that they all work? I have the time to test it after.

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
I don't know let me see them first if the time is too long i will not.


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
What is the best way for me to send them to you?

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
LOL, try pastebin one by one and send all the links here.


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
LOL!! there are too many and all the files lines are too complicate on each file, sorry i cannot help! i though were 5-6 files but are too many!


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
That sucks. Was really hoping someone could help me with this.

Joined: Jun 2014
Posts: 248
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Jun 2014
Posts: 248
Everything you posted can be put into one big file with the exception of the text events that respond to a wildcard. Those need to be kept separate or combined into one on text.

I like all my scripts kept separate though, its much more organized that way.

Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
Can you tell me exactly which ones I can keep together and which ones I need to keep separated please?

Thank you

Joined: Jun 2014
Posts: 248
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Jun 2014
Posts: 248
The wildcard on text events need to be separate because if they are in a single script mirc will only fire the first one.

If you have
ON *:TEXT:!bewbs:#: { stuff }
ON *:TEXT:*:#: { stuff }

even though the second event fires on anything, if someone types !bewbs the second on text never fires because it was already picked up by the first one.

if you had
ON *:TEXT:*:#: { stuff }
ON *:TEXT:!bewbs:#: { stuff }

Then the !bewbs event would never fire because the * event would fire first.

Joined: Aug 2014
Posts: 32
S
Sparkz Offline OP
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Aug 2014
Posts: 32
So anything that starts with ON*: needs to be separated to work?

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Only a single text event can be triggered per file. If you need two events to trigger on a single user message, put them in separate files (or combine the events).

Joined: Jun 2014
Posts: 248
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Jun 2014
Posts: 248
Its the trigger, not the user level that's important.


Link Copied to Clipboard