Jump to content

Featured Replies

Posted
I'm bored and tired so I guess I'll be taking requests for Scripts and any other stuff like that. Just be sure to tell me whether you want it for 1.6 or Source or whatever.
I'm bored and tired so I guess I'll be taking requests for Scripts and any other stuff like that. Just be sure to tell me whether you want it for 1.6 or Source or whatever.

 

You couldnt modify a vbs script for me could you?

  • Author
give me some annoying scripts for cs 1.6, like namespam or something.

 

A note on Pastebin. For some reason, you can't just copy and paste out, so you'll have too download it from the site (There's a button), then make it a .cfg.

 

/////////////////////////////////////
//
//  Radio Spam Script Written By:
//
//             Joe
//
//  (This script makes use of the "m_pitch" command)
//
/////////////::Commands:://///////////
//
//  r.spm_t:  This is the command that turns the script on.
//
//  r.spm_c:  This is the command that changes between the different radio commands.
//

 

http://etc1.pastebin.com/682233

 

/////////////////////////////////////
//
//  Text Spam Script Written By:
//
//             Joe
//
//  (This script makes use of the "_special" command)
//
/////////////::Commands:://///////////
//
//  txt1_t:  This command spams one line at a time, you switch lines with the spm_c command.
//  txt2_t:  This command spams all the lines... sort of.
//  spm_c:   This command is used to switch between the different lines you've made.
//

 

http://etc1.pastebin.com/682224

 

A cool thing too note about these scripts is that they both use different looping methods so you can use them both at the same time if you want. I can make some other quick annoying scripts if you want.

 

 

 

As for godl1ke, Sure, I'd have to learn how to write it a little, but i'll give it a shot.

QUICK NAME SPAM

 

bind "MWHEELDOWN" "name %%myg0t_pwns_j00"
bind "MWHEELUP" "name %##Visit-www.myg0t.com"

 

everytime you scroll yer mousewheel, name spam time .... :facesj:

  • Author
If loops are possible, i want an infinte looping script that loops +attack so i can use it to mass spec freeze.

 

Sadly, Loops aren't possible in Source as far as I know (With just the engine anyways). You'd have to use some sort of outside program to either just spam mouse1 (For +attack) then open CS, or something the hooks into CS and spams +attack. If you had wanted this for 1.6 I could have done it in a second lol.

As for godl1ke, Sure, I'd have to learn how to write it a little, but i'll give it a shot.

 

This vbs script generates hl2 cd keys, it was posted my m0t++

 

For x = 0 to (second(time)*minute(Time)) ' this just makes it more random.
Rnd() 
next

key = ""
For x = 0 to 4
 For j = 0 to 4
   key = key + RChar()
 next
 if(x<4) then
   key = key + "-"
 end if
next

Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate "about:blank" 

Do Until oIE.ReadyState=4 : WScript.Sleep 1 : Loop
oIE.Document.ParentWindow.ClipboardData.SetData "text", key
oIE.Quit : set oIE=Nothing


function RChar()
if Rnd() >.5 then
  RChar = Chr((Rnd()*(57-49))+49)
 else 
  RChar = Chr((Rnd()*(90-65))+65)
end if
end function

 

I need it to loop so you can modifiy the code to tell it how much times to loop. I need the copy to clipboard code removed. And i need it to save the new generated key to a specified text file leaving a line after the paste so the next code gets posted on a new line. Thanks in advance

  • Author

<html>
<body>

<script type="text/vbscript">
For x = 0 to (second(time)*minute(Time)) ' this just makes it more random.
Rnd() 
next

etc = inputbox("How many times etc.")

lol = "ZZP2E"

For z = 1 to etc
key = ""
For x = 0 to 3
 For j = 0 to 4
   key = key + RChar()
 next
 if(x<3) then
   key = key + "-"
 end if
next
document.write(lol & "-" & key & "<br />")
next

function RChar()
if Rnd() >.5 then
  RChar = Chr((Rnd()*(57-49))+49)
 else 
  RChar = Chr((Rnd()*(90-65))+65)
end if
end function
</script>

</body>
</html>

 

Save that as an html file. Not sure how effective it is, I just had to relearn VB today to do it. Not sure how many times it can loop either.

 

EDIT: This version only works in IE, but I can make a version thats saves to a file if you still want it.

Guest
This topic is now closed to further replies.