• Regolamento Macrocategoria DEV
    Prima di aprire un topic nella Macrocategoria DEV, è bene leggerne il suo regolamento. Sei un'azienda o un hosting/provider? Qui sono anche contenute informazioni per collaborare con Sciax2 ed ottenere l'accredito nella nostra community!

Domanda Creare script habbo con vb6

Antox C.

Utente Mitico
Autore del topic
21 Ottobre 2009
6.242
47
Miglior risposta
0
ciao ragazzi...vi vorrei chiedere una domanda...vorrei creare uno script o un flood x habbo...con visual basic 06 ve ne sarei molto grato se mi diceste come fare
vi ringrazio anticipamente :d :d :d :d/size]
 
Ultima modifica:
Flood

Ecco a te:

1)Crea un modulo e metti questo codice:
CODICE
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Declare Function SystemParamsLong Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Long, ByVal fuWinIni As Long) As Long
Const SPI_GETKEYBOARDSPEED = 10


Ora passiamo al form1.

1) Crea un timer con intervallo = 0 ed enabled = true
2) Crea 4 textbox dove andrà inserito il testo da flooddare
3) Vicino ad ogni textbox crea un option button.

Inserire questo codice:
CODICE
Private Sub Form_Load()
Dim Ritardo As Long
Timer1.Interval = Ritardo + 150
End Sub


Che servirà a dare un ritardo al timer.

Inserire poi questo codice:
CODICE
Private Sub Timer1_Timer()

If Option1.Value = True And GetAsyncKeyState(vbKeyF1) Then
SendKeys ("{enter}")
SendKeys (Text1.Text)
ElseIf GetAsyncKeyState(vbKeyF1) And Option1.Value = False Then
SendKeys (Text1.Text)

ElseIf Option2.Value = True And GetAsyncKeyState(vbKeyF2) Then
SendKeys ("{enter}")
SendKeys (Text2.Text)
ElseIf GetAsyncKeyState(vbKeyF2) And Option1.Value = False Then
SendKeys (Text2.Text)

ElseIf Option3.Value = True And GetAsyncKeyState(vbKeyF3) Then
SendKeys ("{enter}")
SendKeys (Text3.Text)
ElseIf GetAsyncKeyState(vbKeyF3) And Option1.Value = False Then
SendKeys (Text3.Text)

ElseIf Option4.Value = True And GetAsyncKeyState(vbKeyF4) Then
SendKeys ("{enter}")
SendKeys (Text4.Text)
ElseIf GetAsyncKeyState(vbKeyF4) And Option1.Value = False Then
SendKeys (Text4.Text)

End If

End Sub


Con questo codice ho dichiarato che quando un utente premerà F1 il primo testo verrà scritto, e se l'option button sarà cliccato il tasto enter sarà incluso, così che il messaggio su msn o dove volete voi sarà inviato da solo..


Fonte: ercorallino.forumcommunity.net





ah per quanto riguarda l'altra cosa dovresti sapere qualcosa sull'intercettazione di pacchetti che si scambiano client e server... comunque di solito per gli script si usa il C#
 
Ultima modifica:
Sezione sbagliata, questo topic va nella sua sezione apposita (Habbo Hacking & Scripting)
Un flood non è uno script ^^
Comunque rimuovi il download di VB6, qui su sciax2 è illegale postare Warez.
 
okok grz 1000 adesso tolgo il link ;)

cmq la guida nn mi è piaciuta molto...:emoji_confused:

RICORDATE...FORZA MILAAAN
 
Ultima modifica:
Copia e incolla...
Comunque ho risposto al 50% e forse di più alla tua richiesta ._.