ThyElite Forums  
Go Back   ThyElite Forums > Downloads > Habbo Downloads
Reload this Page Scripts.
Reply
 
Thread Tools Display Modes
(#1)
Old
cdrapcat is Offline
Lurker
cdrapcat is on a distinguished road
 
Posts: 8
Join Date: Jul 2006
Default Scripts. - 08-16-2006, 10:19 PM

Alot of you know shit about programming scripting applications for habbo.
I will post a tut on that soon but if you alredy know the basics, I'll list some scripts.
CP Photos
Create the target user. Basicly a habbo so you can target him through the rumble screen
Code:
On Error Resume Next
Form1.sckClient.SendData "@\i:666" & Chr(13) & "n:CameraTarget" & Chr(13) & "f:3000680402190132801584103" & Chr(13) & "l:666 666 0.0" & Chr(13) & "c:Cdrapcat" & Chr(13) & "b:ADM" & Chr(1)
Where it says "c:Cdrapcat" change cdrapcat to what you want the habbos mission to be where it says "b:ADM" thats the badge ADM Is Admin HBA Is hobba ect. Where it says "f:3000680402190132801584103" Thats the habbos figure inorder to get your figure Search yourself on console and look through packets for a bunch of numbers like that.
Sending the photo
Basicly it sends the photo. It takes the text from Text1.Text and adds CP to the front then Puts a tab then puts the link in again then adds a special symbol to the end. Then sends it to client.
Code:
On Error Resume Next
Form1.sckClient.SendData "CP" & Text1.Text & Chr(9) & Text1.Text & Chr(1)
That finished that xD
Hobba Alerts
What the code I put below does is puts BK wich is the packet for a hobba alert and then takes the text from the textbox and adds special symbols then sends to client
Code:
On Error Resume Next
Form1.sckClient.SendData "BK" & Text1.Text & Chr(1)
Sending Custom Client Call For Help
What this does is inserts the pakcet for cfh infront of the text from a textbox then adds special symbolds then sends to client
Code:
On Error Resume Next
Form1.sckClient.SendData "BT" & Chr(2) & "    " & Text1.Text & Chr(2) & Text2.Text & Chr(2) & Text3.Text & Chr(2) & Chr(1)
Also Text1 is who sent cfh Text2 is the room hes in and text3 is the message
Ban Message
What this does is inserts the packet for ban then inserts the text from text1.text then sends to client
Code:
On Error Resume Next
Form1.sckClient.SendData "@c" & Text1.Text & Chr(1)
Upon Request I put Custom Mod figures
What this does is Searches then replaces basicly
to do this you must click your sckServer winsock control and go to sckServer's Data Arrival and Type

Code:
Dim Sckbuffer As String
Now that that declaration is in place we go on to the figures
Code:
Sckbuffer = Replace(Sckbuffer, "n:HabboName" & Chr(13), "n:MOD-Yatwice" & Chr(13) & "f:2951080443190132801580043" & Chr(13) & "l:666 666 0.0" & Chr(13) & "c:Use The Ignore Button • [On Duty]" & Chr(13) & "s:m" & Chr(13) & "b:ADM" & Chr(1))
Thats MOD-Yatwice Now below is Kedo
Code:
Sckbuffer = Replace(Sckbuffer, "n:HabboNamer" & Chr(13), "n:Kedo" & Chr(13) & "f:3000580546180092801585105" & Chr(13) & "l:666 666 0.0" & Chr(13) & "c:Use The Ignore Button •" & Chr(13) & "s:m" & Chr(13) & "b:ADM" & Chr(1))
Okay now If you just wanted a hobba badge for your guy you need to know your figure. If you want to look the same here is the code fill in the blanks xD
Code:
Sckbuffer = Replace(Sckbuffer, "n:HabboName" & Chr(13), "n:HabboName" & Chr(13) & "f:Your Figure Here" & Chr(13) & "l:666 666 0.0" & Chr(13) & "c:Your Mish here" & Chr(13) & "s:f" & Chr(13) & "b:HBA" & Chr(1))
Now alot of people want the whole ava type command thing go into sckServer data arrival and type the code below for !HBA: to be changed into a command when saying !HBA:Message or something
Code:
Sckbuffer = Replace(Sckbuffer, "!HBA:", Chr(1) & "BK")
Quick change is
Code:
Sckbuffer = Replace(Sckbuffer, "!CHANGE", Chr(1) & "Bg" & Chr(1))
Reload is
Code:
Sckbuffer = Replace(Sckbuffer, "!RELOAD", Chr(1) & "DB0" & Chr(1))
Leave is
Code:
Sckbuffer = Replace(Sckbuffer, "!LEAVE", Chr(1) & "@i" & Chr(1))
Tut for actully connecting through winsock is comming soon got any script requests feel free to ask.
Reply With Quote
(#2)
Old
BLoOzE is Offline
Member
BLoOzE is on a distinguished road
 
Posts: 11
Join Date: Jun 2006
Location: Twin Cities, MN.
Send a message via AIM to BLoOzE Send a message via MSN to BLoOzE Send a message via Yahoo to BLoOzE
Default 08-18-2006, 10:34 AM

To enable Chooser:
Code:
Form1.sckClient.SendData "@Bfuse_habbo_chooser"
To enable Furni:
Code:
Form1.sckClient.SendData "@Bfuse_furni_chooser
Special HC layouts:
Code:
Form1.sckClient.SendData "@Bfuse_use_special_room_layouts"
To get a free dive enter a lido go to the diving part then send this info to client:
Code:
A}


Reply With Quote
(#3)
Old
Pyro is Offline
Spamzilla
Pyro is on a distinguished road
 
Posts: 523
Join Date: Jun 2006
Location: My Home
Send a message via AIM to Pyro Send a message via MSN to Pyro
Default 08-18-2006, 10:53 AM

Ive had all these codes for a while.
Hope this help to some people that need it





Reply With Quote
(#4)
Old
simonmanu is Offline
Senior Member
simonmanu is on a distinguished road
 
Posts: 130
Join Date: Aug 2006
Default 08-18-2006, 01:09 PM

thank this is a real help nice going once again pyro





to get fit babes
Reply With Quote
(#5)
Old
cdrapcat is Offline
Lurker
cdrapcat is on a distinguished road
 
Posts: 8
Join Date: Jul 2006
Default 08-19-2006, 10:58 AM

Special Hc layouts is patched.
Reply With Quote
(#6)
Old
Pyro is Offline
Spamzilla
Pyro is on a distinguished road
 
Posts: 523
Join Date: Jun 2006
Location: My Home
Send a message via AIM to Pyro Send a message via MSN to Pyro
Default 08-19-2006, 11:39 AM

Quote:
Originally Posted by cdrapcat
Special Hc layouts is patched.
It was Patched when V9 Came out :S





Reply With Quote
(#7)
Old
Hi-Powered is Offline
Bantard
Hi-Powered is on a distinguished road
 
Posts: 8
Join Date: Aug 2006
Default 08-19-2006, 02:50 PM

Habbo Sucks Penis
Reply With Quote
(#8)
Old
Hi-Powered is Offline
Bantard
Hi-Powered is on a distinguished road
 
Posts: 8
Join Date: Aug 2006
Default 08-19-2006, 02:50 PM

Bi-Sexual Mofo No Nothin'
Reply With Quote
(#9)
Old
MYMOMMAGOTBEEF is Offline
Lots o' Posts
MYMOMMAGOTBEEF is on a distinguished road
 
Posts: 471
Join Date: Jul 2006
Location: MN
Send a message via AIM to MYMOMMAGOTBEEF
Default 08-19-2006, 09:44 PM

No double posting Well thanks for the scripts been looking for things like these.



[Made By Xplogen, Thanks ]
Reply With Quote
(#10)
Old
tuffems is Offline
Lurker
tuffems is on a distinguished road
 
Posts: 1
Join Date: Aug 2006
Default 08-26-2006, 08:51 AM

can somebody help me whit the basics?
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump



Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.