[b]@stepdarn14 [/b]
Read also the instruction I posted on how to use the script
[color=red][b]=>Instruction how to use the script Topic Number 6:[/b][/color]
Create a subfolder & name it as whatever you want to name it.
[b]Inside your script folder, save any js you want in each file like for example,[/b]
1)if you want your who right clicked cbox by feruzz, save it as [b]wrccbox.js[/b]
2)if you want friend randomizer save it also as one file as [b]frbox.js[/b]
3)if you want wvm cbox mode, save it also as one file as [b]wvmcbox.js[/b]
[b]So the above examples will be the contents of your scriptfolder.[/b]
[b]If you named your subfolder [color=red]javascripts[/color] then put the link into the scriptFolder area.[/b]
[b]To apply it in the script it will then look like this:[/b]
[quote]// for multiple js injection
scriptFolder = '
http://h1.ripway.com/username/javascripts/'
var scripts = new Array()
scripts[0] = 'wrccbox.js'
scripts[1] = 'frbox.js'
scripts[2] = 'wvmcbox.js'
for(x in scripts){
myscripts = document.createElement('script')
myscripts.src = scriptFolder+scripts[x]
document.getElementsByTagName('head')[0].appendChild(myscripts);
}[/quote]