Mar 17, 2004 04:57
Min brings up a good point. If you want to add additional support for other versions, follow my directions listed below using the supplied code.
1) Open up your scripts dialog box.
2) Locate the hotlink script.
3) Below the last "elseif" statement paste in another "elseif" statement, but replacing 1.xx with the version number and C:\pathname\winbolo.exe to the directory of which that version was installed.
[code:1:c4c4aa0c0b]elseif (1.xx isin $hotline) {
run C:\pathname\winbolo.exe $1
}[/code:1:c4c4aa0c0b]
4) An example of someone wanting to include support for 1.10 would be as follows
[code:1:c4c4aa0c0b]on ^*:HOTLINK:*winbolo*//*:*:{ }
on *:HOTLINK:*winbolo*//*:*:{
if (1.13 isin $hotline) {
run C:\winbolo113\winbolo.exe $1
}
elseif (1.14 isin $hotline) {
run C:\winbolo114\winbolo.exe $1
}
elseif (1.10 isin $hotline) {
run C:\winbolo110\winbolo.exe $1
}
}
[/code:1:c4c4aa0c0b]
1) Open up your scripts dialog box.
2) Locate the hotlink script.
3) Below the last "elseif" statement paste in another "elseif" statement, but replacing 1.xx with the version number and C:\pathname\winbolo.exe to the directory of which that version was installed.
[code:1:c4c4aa0c0b]elseif (1.xx isin $hotline) {
run C:\pathname\winbolo.exe $1
}[/code:1:c4c4aa0c0b]
4) An example of someone wanting to include support for 1.10 would be as follows
[code:1:c4c4aa0c0b]on ^*:HOTLINK:*winbolo*//*:*:{ }
on *:HOTLINK:*winbolo*//*:*:{
if (1.13 isin $hotline) {
run C:\winbolo113\winbolo.exe $1
}
elseif (1.14 isin $hotline) {
run C:\winbolo114\winbolo.exe $1
}
elseif (1.10 isin $hotline) {
run C:\winbolo110\winbolo.exe $1
}
}
[/code:1:c4c4aa0c0b]