Dark Bit Factory & Gravity

PROGRAMMING => Purebasic => Topic started by: va!n on October 01, 2007

Title: Caclulating your ebay evalations profile
Post by: va!n on October 01, 2007
Something old i found.... I needed this to play a bit with the values to check the postive percent rating of my ebay profile. its nothing special but maybe it may be usefull for someone. so i post it here... have fun ^^

Code: [Select]
; -----------------------------------------------------------------------
;
; PB v4.0+   -   Caclulating your ebay evalations profile v0.001
;
; Code by va!n aka Thorsten Will    /   14-June-2006
;
; -----------------------------------------------------------------------

PositiveComments = 103     ; Enter here the number of pos. comments
NegativeComments = 2        ; Enter here the number of negative comments

ResultPoints.l  = PositiveComments - NegativeComments
ResultPercent.f = PositiveComments / (PositiveComments + NegativeComments)

MessageRequester("Your ebay Evaluations:" , "Evaluation Profile: " + Str(ResultPoints.l) + Chr(10)+Chr(13) + "Positive Evaluations: " + StrF(ResultPercent.f*100,1) + "%", 0)
End

; -----------------------------------------------------------------------
Title: Re: Caclulating your ebay evalations profile
Post by: Shockwave on October 01, 2007
I can honestly say that I have never bought or sold anything on Ebay!

I hear that some people actually make a living from it?