A few newbies...
They're ones I discovered lately... ;)
If you want, their attachments are included for your enjoyment.
Imagine that
hahahahahhaha
Just Discovered um huh??
nice
cyber jedi
Here is the other one, due to size limits...
NewGal01.htr (just in case)...
Hey hey ART :I taught my doggy a new TricK:
wouldnt u know it man.
i just discovered this new haptek character myself lolol
https://imgur.com/a/xZEAB1T
use as u seee fit. I suspect there will be many more.. keeping it freeeeee
cyber
I could not say NO
I did a midget mini me
lmaoooo
https://streamable.com/nk626
https://www.youtube.com/watch?v=zGbpMDHmbf0
cyber
keeping it free
feel free to do what ever
Discovered this that has an uncanny resemblance...
https://imgur.com/a/VMR2XPA
update: Is it just me or does this look more like me? https://imgur.com/a/U9pxOiu
Checker57
checker: looks great man...
happy putt putt
enjoy
cyber
A little more work and perhaps I'll get it!
Any guess?
Checker57
looks great man, just keep on it
great job
cyber
Checker57, you're catching on!
Just thought i would pop in & take a look at what's going on.
You guys are slowly getting the hang of things.
A couple of things that might help you.
First id one i just did.
Second is map of where everything goes.
Have fun.
wb nige: I see u got arts ,message
Im busy rewriting Hal
but i love what u did for the guys here
Ty, awesome stuff man
cyber
Kryton sticking his head above the fence again.
Anybody got any new full bodies?
Would you be meaning the FB (.jpg) Skins or the FB .htr's?
There are Plenty of FB .jpg skins but the .htr's are somewhat limited.
There are also a few Torso figures but Putty only supports the Heads, as you know.
here is one i just ran across (ahem) , i do have the original maybe last copy working , THANK God i never un installed it , thinking i could put it back :).
heres mine , enjoy !
oops something i am doing is wrong i tried uploading it and it said the file extension isn't allowed . i have the original haptar extension but it won't load on here . i changed it to hap in my folder but the face gtreen etc. didn't show instead it looked like a piece of paper .
what do i need to do to load the file on here?
p.s. Checker57, your doing good it takes practice , all of us started the same way . i may do a video tutorial and put a link on here .
OKAY FIGURED IT OUT , CHECKED MY ZABAWARE PROGRAM FILE AND CHARACTERS AND THE EXTENSION , IT'S HTR . ALSO MADE AND INCLUDED A PIC OF HER . LS2019 !!
Yet another later reply.
I collect .htr full bodies.
Anybody got any?
Kryton
Maybe if you list the ones you have people will be able to send you some that you don't have.
No sense sending a huge file filled with duplicates. Just saying...
No heads, no torsos, just full-body characters and you're talking about the htr characters NOT the Clothing or outfits one can drop onto them, right?
Maybe you'll find some takers on this one.
ART: Hey hye Man
That opens Hal up to the net, oh my....
when u get a hand on that, we will open it up to more then 1 site.
Just repeating code
Your weather should plugin now
Email that back to me in uhp format please, i got an idea
cyber budz get cyber treats, enjoy
Cyber,
I tried these two:
http://www.rssweather.com/zipcode/21157/wx.php
http://www.rssweather.com/zipcode/21157/rss.php
Near the bottom (3/4) of the code, it indicated that the rss.php line was for the RSS feed from the site so I plugged it into the code and tried it to no avail!!
I dug into an existing weather plugin that works wonderfully and plugged that line for the Westminster airport.
Nope...it didn't work either!
I tried my usual weather plugin and it worked perfectly. Who knows. I just don't think I'm going to change it now but that forexe scraper is cool and very powerful, if only I could get it to stop without having to throw out a cinder block on a logging chain!! (Hehe...)
I'd just like to ask HAL what is IBM doing today or Google stock or xyz? You know...one at a time...not the entire market or Japanese exchange.
Just saying...sometimes too much can be overwhelming.
Funny thing that really got to me a while ago...The weather Plugin that I use with HAL all the time that works...
It has that:
Set objXMLDoc = CreateObject("Microsoft.XMLDOM")
objXMLDoc.async = False
objXMLDoc.load("http://w1.weather.gov/xml/current_obs/KDMW.xml") ' I loaded the URL from my HAL Weather plugin and it still didn't work in the AMEX Plugin.
' Trying to figure out why it worked before I installed that Outlook program I got from you today.
' Can't say why the thing doesn't work as nicely as the Forex one does. Head scratcher...
=====================
ANYHOW....Here's the AMEX file you sent me with the Westminster data line inserted as you requested.
Thanks!!
ART: lemmi see the forex scraper
post here
cyber
OK...here is the Forexlive scraper...
--------------------------------------------
Rem Type=Plugin
Rem Name= forexlive
Rem Author= cyberjedi
Rem Host=All
Rem PLUGIN: PRE-PROCESS
'The preceding comment is actually a plug-in directive for
'the Ultra Hal host application. It allows for code snippets
'to be inserted here on-the-fly based on user configuration.
HalBrain.ReadOnlyMode = True
'Determines that you are talking about the Forex
If InStr(1,InputString, "forex",1) > 0 Then
UltraHal = Getforex(HalCommands)
ElseIf InStr(1,InputString, "forex",1) > 0 Then
End If
' This bad boy is a Forex Scraper with a twist, All the data Scraped is ported through Hals Voice. It took cyberjedi to pull it off. Enjoy.
' This also Breaks Hals speech limitations on how much he can say.
' Trigger= forex
'I put this together while listening to this. -->>>https://www.youtube.com/watch?v=YS8YP7mtNss&t=2s
'Follow me in to the jungle. http://vaughnlive.tv/mrelectric
' I give myself about a 7.5 on cool ideas here
'Once again make sure that ur SAPI05 engine is on and working
'This means the lips must MOVE...lol
'Forex updates this feed hourly
' Wana take the time to thank LifeTimeGamer who took a leap of faith and works with me
' tirelessly and beta test all the code. And watches my dumb movies.
' Shout out to onthecuttingedge2005 Trigger refinement
Rem PLUGIN: FUNCTIONS
Function Getforex(HalCommands)
Const SVSFlagsAsync = 1
Const DontShowWindow = 0
Const WaitUntilFinished = 1
Set WshShell = CreateObject("Wscript.Shell")
Set FSO = CreateObject("Scripting.FileSystemObject")
Set Sapi = CreateObject("SAPI.SpVoice")
For Each Voice In Sapi.GetVoices
i = i + 1
Next
For loopvar = 0 to i-1
if loopvar = CInt(confirm_voice) then
Set Sapi.Voice = Sapi.GetVoices.Item(loopvar)
end if
Next
Set xmlDoc = CreateObject("Microsoft.XMLDOM")
Set WshShell = CreateObject("Wscript.Shell")
Set FSO = CreateObject("Scripting.FileSystemObject")
HalMenu.HalCommand "<SPEAK>" & "Reading headlines !" & "</SPEAK>"
For loopvar = 0 to 2
If tempconfirm = loopvar then
if tempconfirm = 1 then
HalMenu.HalCommand "<SPEAK>" & "Currently reading " & confirm & " latest headlines" & "</SPEAK>"
else if tempconfirm = 1 then
HalMenu.HalCommand "<SPEAK>" & "Okay ." & "</SPEAK>"
wscript.quit
else
HalMenu.HalCommand "<SPEAK>" & "Currently reading " & confirm & " latest headlines " & "</SPEAK>"
end if
end if
xmlDoc.async = false
xmlDoc.load("http://www.forexlive.com/feed/technicalanalysis") ' This is where u put you own rss feed .xml
Set nodelist = xmlDoc.selectNodes("rss/channel/item")
i = 3
For Each item In nodelist
Set f1 = item.selectsinglenode("title")
Set f2 = item.selectsinglenode("description")
HalMenu.HalCommand "<SPEAK>" & f1.text & "</SPEAK>" ' these two lines are the Magic of the plugin
HalMenu.HalCommand "<SPEAK>" & f2.text & "</SPEAK>" ' these two lines are the Magic of the plugin
i = i + 1
if i = tempconfirm then
wscript.Quit
end if
Next
end if
Next
End Function