ThyElite Forums

ThyElite Forums (http://www.thyelite.com/forum/index.php)
-   Endorsed & Supported programs (http://www.thyelite.com/forum/forumdisplay.php?f=18)
-   -   YAWCC v1.6 (http://www.thyelite.com/forum/showthread.php?t=1310)

DefectiveProduct 07-27-2006 08:05 PM

YAWCC v1.6
 
1 Attachment(s)
YAWCC v1.6

A few minor updates were added such as:
• Help index
• Fixed sumo prize snatcher status bug
• Floodkeys bug fixed
• Two links added to the navigation menu
• And all of the other previous features as well

Screenshot




If you get any popups saying a file is missing, search that file name on google, download it and put it in the same folder as YAWCC.

Comments and suggestions are always apreciated. :p

Enjoy.

riggsley 07-27-2006 08:57 PM

nice, i like it.

does the idol generator still work?

A5-TOM 07-27-2006 08:58 PM

did u put the wpe pro files i put for download in ur old thread
cause they dont get detected

DefectiveProduct 07-27-2006 09:02 PM

I'm not sure if the generator still works. The cap code generator obviously won't work, but I think the new furni one will.

And just turn off your anti-virus and extract the files from the .zip folder or just put any other wpe pro files you have in the apps/wpe folder.

Heff 07-27-2006 09:17 PM

I'd hit it. :)

Sifter 07-28-2006 12:19 AM

Tell me, how do you make the sumoprizegrabber status thing for all 3 prizes? Individually I mean.

DefectiveProduct 07-28-2006 12:26 AM

Magic.

Sifter 07-28-2006 12:36 AM

Please tell me.

DefectiveProduct 07-28-2006 12:43 AM

Ask someone else or post a thread asking about it.

I don't know about Takeshi, but I went through hell trying to figure out how to get the status working. Even in my previous version v1.5 the status still wasn't perfect when you attempted to collect all three pieces of furniture at the same time.

Sorry dude.

Peener 07-28-2006 10:21 AM

That is one of the greatest piece of shit clients Ive ever seen : I

Jock 07-28-2006 09:17 PM

None of the navigations work for me. Neither does the browser which is the main part of a client. I feel like I need to connect this program to the internet somehow but I don't know how.

DefectiveProduct 07-29-2006 03:05 PM

Hmm.

You positive?

If you're going to navigate in a specific client you need to have it active. Like, click on the client and make it on top of all the other windows in the main window.

I really don't see why something as simple as browser and anvigation just wouldn't work.

If I'm not mistaken, it uses Internet Explorer.. so the only thing I can think of is that you uninstalled or deleted or just don't have IE.

Skater-4-Life 08-01-2006 01:24 AM

I didn't see the top 40 charts on the navigation. Not included?

DefectiveProduct 08-01-2006 01:25 AM

Heh. Forgot about that I guess.

MYMOMMAGOTBEEF 08-02-2006 11:28 PM

the sumo prize grabber only worked once for me :/ i now got a tat/rice/n gong tho :)

Digitalicious 08-03-2006 12:39 AM

Quote:

Originally Posted by YOMOMMAGOTBEEF
the sumo prize grabber only worked once for me :/ i now got a tat/rice/n gong tho :)

It only works once a day.

Aerodu 08-03-2006 11:31 AM

How come I was only able to get 1 gong, 1 rice, and 1 tat, after that it stoped giving it to me.

MAN!AC 08-03-2006 11:55 AM

Quote:

Originally Posted by Digitalicious
It only works once a day.

This is why

MYMOMMAGOTBEEF 08-03-2006 01:24 PM

oh sweet ima use it today again :)

Lanelo 08-05-2006 04:07 PM

Only great thing about this is for the noobs.it shows tvb so they will stop complaining about "where is the tvb?"

liljonx522x 08-05-2006 05:05 PM

i cant download WPE pro for some reason

Melonman 08-06-2006 12:57 AM

make sure your virus protection is off.

hotshot1 08-06-2006 07:09 AM

that is a sweet client thanks man peace i have ben looking for this for a weeks the sumo is the best

Sifter 08-07-2006 02:18 AM

Yeah... about those earlier posts, if you can, will you tell me how to do the status for just one of the prizes?
Also, how do you use the INI files and whatnot on the flooder? I just need to know for saving Text1... default name.

DefectiveProduct 08-07-2006 12:24 PM

To save Text1



Quote:

Private Sub WriteConfig
On Error GoTo error
Open "" & App.Path & "\CONFIGNAME.ini" For Output As #1
Print #1, "T=" & Text1.Text & ""
Close #1
Exit Sub

error:
MsgBox "An error occured while writing the config.", vbCritical, "ERROR"
End Sub
To read the config and get the content from it.


Quote:

Private Sub ReadConfig()
On Error GoTo error
If Dir("" & App.Path & "\CONFIGNAME.ini") = "" Then
Exit Sub
End If

LineNum = 0
Open "" & App.Path & "\CONFIGNAME.ini" For Input As #1
Do Until EOF(1)
LineNum = LineNum + 1
Line Input #1, ConfigLine

If ConfigLine Like "T=*" Then
Text1.Text = Right(ConfigLine, Len(ConfigLine) - 2)

Else
End If
Loop

Close #1
Exit Sub

error:
MsgBox "An error occured while reading the config.", vbCritical, "Error"
End Sub
To add a new line of text in your ini file, just insert this small code in the line that prints what you want the file to say.

Quote:

" & vbCrLf & "
So let's say you had three textboxes named Text1, Text2 and Text3.

Quote:

Print #1, "1=" & Text1.Text & vbCrLf & "2=" & Text2.Text & vbCrLf & "3=" & Text3.Text & vbCrLf & ""

To add the reading of another line in the config, add another one of these codes to your ReadConfig function.

Quote:

If ConfigLine Like "(whatever)=*" Then
(whatever).Text = Right(ConfigLine, Len(ConfigLine) - 2)
To write the config, just insert this code in a command button or some other function.

Quote:

WriteConfig
and to read it,

Quote:

ReadConfig
It's kind of complicated but if you just read everything over and look at what is written you can get the hang of it. I'm far too lazy to explain everything piece by piece, so you'll have to just try and figure it out. :|

Vis 08-07-2006 12:29 PM

lolpwnt

someone move this shit to endorsed

DefectiveProduct 08-07-2006 12:33 PM

Moved. :-*

Sifter 08-12-2006 11:27 AM

How do i make it so that on the Form_load event it will do the read config action? Because its not working for me...

DefectiveProduct 08-12-2006 01:35 PM

Private Sub Form_Load()
ReadConfig
End Sub



Just use the name of the sub in an another event to trigger that sub.

Sifter 08-12-2006 03:34 PM

But i had that, it doesnt work...

Noob 08-12-2006 05:55 PM

Nice program. I'll probly use this from now on.

W a r n i n g 08-13-2006 05:05 PM

For some reason I love this Clients. Although I really dont play coke ne more.

Bawt 08-13-2006 05:11 PM

This is the only client I use. <3 Super fast, almost no crashing, I love this.

PyR0 08-13-2006 06:04 PM

Bawt, you said exactly what I was going to say.
Defective, you're an extremely GREAT programmer.

Sparda1001 08-13-2006 10:53 PM

So there's no possible way to use the Sumo Snatcher more than 1 time a day?

Secret 08-15-2006 10:21 AM

This is the best coke cliant I've ever used, hands down.

Gesun 08-15-2006 11:17 AM

defective just pwnt the coke client programs...THIS IS SOME CRAZY SHIT!!!

Z-Man 08-22-2006 04:57 PM

damn straight

DefectiveProduct 08-22-2006 05:06 PM

I'm working on 2.0 right now.

I have no idea when it's going to be finished though. Chances are that I'll actually ditch it and not make it at all.

BlindMonkey 08-22-2006 05:33 PM

Quote:

Originally Posted by DefectiveProduct (Post 28297)
I'm working on 2.0 right now.

I have no idea when it's going to be finished though. Chances are that I'll actually ditch it and not make it at all.

Why ditch the idea? If you made it and it worked, People would totally love you :) And you would make a lot of people Happy and or Rich


All times are GMT -6. The time now is 05:27 PM.

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