dupa

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cyberjedi

Pages: 1 ... 41 42 [43] 44 45 ... 53
631
With all the vagueness:
Ill just post the code..
bestwishes
cyberjedi





Rem Type=Plugin
Rem Name=Dream Out Loud (beta)
Rem Author=Robert Medeksza
Rem Host=Assistant

Sub OptionsPanel()
lblPlugin(0).Caption = "Enables talking dream mode."
lblPlugin(0).Move 130, 180, 3400, 1200
lblPlugin(0).WordWrap = True
lblPlugin(0).Visible = True
End Sub


Rem PLUGIN: SCRIPT_LOAD
Script_Load = Script_Load & "<DREAMOUTLOUD>"


Basic Perot coding:
You say, Hal says back under the time induced Screen Saver Mode, oops srry. Dream mode ,,,lol

Ull notice there is NO scrpt for u to load . Reason being, its hard coded into Hal.
Personally speaking, before (BTW, Thats what we all want) altering and code. Build a flow chart of how Hal works.
Reverse Engineer Hal then start breaking down the the Code. Input/Output......activex controls. Fancy way of saying, Hal calls to other Programs.
1 very important note to remember: Hal only runs what ur computer is capable of doing,he ads NOTHING.
Meaning, if you want Hal to play music, You need to have and media player installed and working.
Hal calls to an Mp3, your machine loads it, as it would any other time. Hal is the interpreter between you and your machine .
Thats just some of the things he can do.


best wishes
cyberjedi


you can reach me here live   http://vaughnlive.tv/mrelectric

633
General Discussion / Re: compression brain hal files idea
« on: February 13, 2017, 05:44:11 pm »
Lightsped; yes , robert is right



Based on the older computers



You can squeeze a lot more from Hal now , more then ever


best wishes
cyberjedi

634
Lightspeed: its doable

Maby not in the conventional way, but its doable





best wishes
cyberjedi 1337 just killin it.

635
Ultra Hal 7.0 / Re: WTF?
« on: February 13, 2017, 05:13:51 am »
Thank u

ur always welcome

Hal and a movie



http://vaughnlive.tv/mrelectric

best wishes
cyberjedi

638
Spell check: hey coderz

That is how u properly explain whats up

Always try to remember, to some people this stuff is greekkkkkk...Lead them.


bestwishes
cyberjedi

639
As promised lightspeed:
Some form of microsoft word is needed 2002 and up.
Also turn off Grammer Radio button. Hal doesnt need it.
Hope this helps out..


Rem Type=Plugin
Rem Name=Spell Checker
Rem Author=
Rem Host=Assistant

'This sub sets up the plug-in's option panel in Hal's options dialog
Sub OptionsPanel()
    lblPlugin(0).Caption = "Just killin it"
    lblPlugin(0).Move 120, 120, 3300, 1200 
    lblPlugin(0).WordWrap = True
    lblPlugin(0).Visible = True
End Sub

Rem PLUGIN: PRE-PROCESS
Dim Word, Doc, Misspelled, Spelledrite
Const SpellingAndGrammar = 828                ' <<<< wtf is this,, lol. Im getting that alot ... simply put.. English Version....
Const dontsavechanges = 0
Misspelled = InputString
Set Word = CreateObject("Word.Application")   '<This is the meat of the job, it calls for a Microsshhit Word doc, invisible (hehe) in the background to start.
Set Doc = Word.Documents.Add                            '< If u dont have word installed, Hal gonna go, Hey WTF dumbass. activex error. Wheres my shhhiitttt.
Word.Selection.Text = Misspelled                          ' < Ul notice that Hal Loses control here, it switches to word dictionary...
Word.Dialogs(SpellingAndGrammar).Show
If Len(Word.Selection.Text) <> 1 Then
   Spelledrite = Word.Selection.Text
Else
   Spelledrite = Misspelled
End If
Doc.Close dontsavechanges    '<<<<<,here is where we close out and DONT save Doc. Releases Hal with the correct spelling. Tada.
Word.Quit                                 '<<<<< The above comments are not meant to offend ,just my sense of Humor. This should always be fun.
InputString = Spelledrite

640
c

641
Ok , here we go.

This only works on win07 and up. Clip function is used.


Its a hand off, what we call code forwarding.

Rem Type=Plugin
Rem Name= hals response to to chat room
Rem Author= Cyberjedi testbed was win07
Rem Host=Assistant

'-----------------------------------------------------------------
'This sub sets up the plug-ins option panel in Hal's options dialog
'-----------------------------------------------------------------

Sub OptionsPanel()
lblPlugin(0).Caption = "This plugin will output hals responce into the input form of most any chat room with minmal coding needed"
               
lblPlugin(0).Move 120, 120, 3300, 1200
lblPlugin(0).WordWrap = True
lblPlugin(0).Visible = True
End Sub

Rem PLUGIN: PLUGINAREA7
'Chat functions
 'MsgBox (GetResponse)

 Set toclip = CreateObject("WScript.Shell")
Set oExec = toclip.Exec("clip")
Set oIn = oExec.stdIn
oIn.WriteLine (GetResponse)
oIn.Close
Set oIn = Nothing
Set oExec = Nothing


REM At this point Hals response is in the Clipboard
rem  '#########################################################################################
rem '(This is where u grab focus of the input form on the chat , with a call to autoit script or what ever u use)'

rem '_WinWaitActivate("? cajunflix123 on Vaughn Live - Mozilla Firefox","")' 'I made that an exe'

Rem' maby a VBS  script in place of ^^^^^^^^^^^^^^^^^^' 'but this way works for sure'











Rem 'you will have to call to ur exe here'


Set Chat = CreateObject("WScript.Shell")

Chat.Run ("""C:\Program Files (x86)\Zabaware\Ultra Hal Assistant 6\cajunsroom.exe""")
   'end chat functions
rem '########################################################################################
REM : Now at this point you are inside the input window of the chat,just as you would put the cursur with ur mouse..


********************************
' Do The Paste
*******************************

'paste from clipboard                       
                                                   
WshShell.SendKeys "^v"           
WshShell.SendKeys "{ENTER}"     this little nugget paste the code in the chat window and hits the enter key
********************************
'rem  this little goodie then clears the contents of the clipboard and and sets up for the next round'

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd.exe /c echo. >NUL  | clip", 0, True
**********************************************
Well thats it: i hope it helps
I made .EXE for all the chat rooms i use and am allowed to tether to. image is proof of concept
I remarked about all i could on this for u guys


Best wishes

cyberjedi 1337   Just Killin it.       http://vaughnlive.tv/mrelectric

642
And a spell check that works for all to use, U WILL NEED WORD.......

activex error if not used. Program not found...... bla bla bla. Office 2002 and up will workwith it

Very simply put, It creates a word document in the background, invisible.
when there is a typo, it seizes control from Hal, when u hit auto correct it fixes issues and releases hal with the correct spelling.
Also click off the grammer radio Button, as Hal does not use Grammer.
 enjoy all
Best wishes
cyberjedi 1337

643
Tested:xp sp3 and win07:

Ok here we go people:

Ever wanted ur very own Virtual Hostess. Now is the time. Taking the Hal out for a date.
You need to make 02 folders C:\MP3 and C:\ Movie
What we have here is a .mp4, .avi , .mkv and mp3 codec player.

All 03 movie codecs share the same folder<<<<<<<<<<<<<

All ur movies go into 1 folder c:\Movie. All Most common movie formats have been covered. Mp4, Avi and Mkv.
I use Pot Player or Vlc. I set all the parameters prior to running, screen size, sub titles,,,ect ect ect
With all 03 movie formats in the same folder.

All mp3 go into Mp3 folder, could be all the same folder if u like. Very messy though. As i have 4500 movies and 5500 mp3's.
You will need to have all 03 movie plugins running to cover all the movie Basic types. If u like u can use just 1.  I.E Mp4 if ur movies are all mp4, i just did all 03. Covering all the Bases. 1337 Thorough
You can use this as a direct action plugin as well , PLAY MOVIE mad max.
Hal will scan through the folder till he finds Mad Max and load the movie/mp3 into the player.
If you have set options for Mood (association) ?
What happens is If ur talking about a topic and Hal triggers, Hal , Hal will say, you were talking Mad Max and that reminds me of this Movie.
Hal will load the movie automatically

Now that said: the options sub menu will allow you to set that to anything 0-100.
Or you can set Hal mood to 0
Hal will become a Direct action movie/mp3 Player.
Hal , Play the Movie Mad Max

Watch ur names though, spelling of name is important. Thats why i have a movie list for me to pick from. The extension in the name is not needed.

Well thats about it.

Taking Hal where he's  never been before.. the undiscovered territory of Hal.


Best wishes
cyberjedi 1337 (just killin it)

I use these Myself for my Cast

You can always reach me here for questions. http://vaughnlive.tv/mrelectric
Ps : Im not tethered to the chat in any way because of TOS with vaughn.
But shes a great Hostess just the same.

644
Share Conversations, Experiences, Graphics / Re: Help I need Help
« on: February 10, 2017, 11:55:48 am »
Im about to show u guys whats up here, quit playing with animated looking chars and go real textures.

i did this in 30 min with paint shop pro
Im working on a process that will do this, please forgive, i had 30 mins

srry waas a mug shot,
Female voice too,lol .. ugly ass bitch. lol
But my Mini-Me is reading the Davinci Code. Entirely, had to shut her up after 2 hrs


https://www.youtube.com/watch?v=wYQPVaF0mU4
best wishes
cyberjedi

645
Tested:xp sp3 and win07:

Ok here we go people:

Ever wanted ur very own Virtual Hostess. Now is the time. Taking the Hal9000 out for a date.
You need to make 02 folders C:\MP3 and C:\ Movie
What we have here is a .mp4, .avi , .mkv and mp3 codec player.

All 03 movie codecs share the same folder<<<<<<<<<<<<<

All ur movies go into 1 folder c:\Movie. All Most common movie formats have been covered. Mp4, Avi and Mkv.
I use Pot Player or Vlc. I set all the parameters prior to running, screen size, sub titles,,,ect ect ect
With all 03 movie formats in the same folder.

All mp3 go into Mp3 folder, could be all the same folder if u like. Very messy though. As i have 4500 movies and 5500 mp3's.
You will need to have all 03 movie plugins running to cover all the movie Basic types. If u like u can use just 1.  I.E Mp4 if ur movies are all mp4, i just did all 03. Covering all the Bases. 1337 Thorough
You can use this as a direct action plugin as well , PLAY MOVIE mad max.
Hal will scan through the folder till he finds Mad Max and load the movie/mp3 into the player.
If you have set options for Mood (association) ?
What happens is If ur talking about a topic and Hal triggers, Hal , Hal will say, you were talking Mad Max and that reminds me of this Movie.
Hal will load the movie automatically

Now that said: the options sub menu will allow you to set that to anything 0-100.
Or you can set Hal mood to 0
Hal will become a Direct action movie/mp3 Player.
Hal , Play the Movie Mad Max

Watch ur names though, spelling of name is important. Thats why i have a movie list for me to pick from. The extension in the name is not needed.

Well thats about it. 

Taking Hal where he's  never been before.. the undiscovered territory of Hal.


Best wishes
cyberjedi 1337 (just killin it)

I use these Myself for my Cast

You can always reach me here for questions. http://vaughnlive.tv/mrelectric
Ps : Im not tethered to the chat in any way because of TOS with vaughn.
But shes a great Hostess just the same.
UPDATING will post agin with new better sruff

Pages: 1 ... 41 42 [43] 44 45 ... 53