Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools
uCash & uShop v2.0.0 Details »»
uCash & uShop v2.0.0
Version: 2.0.0, by Revan Revan is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 02-04-2006 Last Update: 06-03-2006 Installs: 248
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

As of June 4th 2006 the uCS project is officaly closed.

For more info please see this thread. https://vborg.vbsupport.ru/showthread.php?t=117590

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #432  
Old 02-08-2006, 11:21 AM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent good news today.
  #433  
Old 02-08-2006, 11:50 AM
mcasteel mcasteel is offline
 
Join Date: Sep 2005
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great news! You guys rock! Thanks again for all your hard work.
  #434  
Old 02-08-2006, 03:32 PM
Revan's Avatar
Revan Revan is offline
 
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I will pay $25k to the person that can explain to me why the original coder of the uCS hack coded an infinite loop in order to do a calculation not dependant on the loop result. At all.
I will explain:
This code was found in ushop/action.bank.php:
PHP Code:
    while ($time >= $nextinterest) {
        
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
        
$nextinterest = ($nextinterest $action['interestincrement']);
    } 
So if you replace it with this:
PHP Code:
    while ($time >= $nextinterest) {
        
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
        echo 
$nextinterest;
        echo 
"<br />";
        
//$nextinterest = ($nextinterest + $action['interestincrement']);
    
}
    die(); 
you will notice an infinite loop.
All echoing the same number.
Now replace it with this:
PHP Code:
    $amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
    
$nextinterest = ($nextinterest $action['interestincrement']); 
And the bank will work.

// End rant


I still have other problems to look into and an Uninstaller to code before I release Beta 2.
  #435  
Old 02-08-2006, 04:36 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Beta 2 is currently working on being released at the moment, like Revan said. Only 2 bugs to fix and then the uninstaller.
  #436  
Old 02-08-2006, 05:06 PM
tehste tehste is offline
 
Join Date: Feb 2004
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gio~logist
Beta 2 is currently working on being released at the moment, like Revan said. Only 2 bugs to fix and then the uninstaller.
revan it is because link/squall is/was not really that good of a coder. The whole code is just horrible. When I look at it my eyes hurt. Now can I have my 25k
  #437  
Old 02-08-2006, 05:08 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Revan
I will pay $25k to the person that can explain to me why the original coder of the uCS hack coded an infinite loop in order to do a calculation not dependant on the loop result. At all.
I will explain:
This code was found in ushop/action.bank.php:
PHP Code:
    while ($time >= $nextinterest) {
        
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
        
$nextinterest = ($nextinterest $action['interestincrement']);
    } 
So if you replace it with this:
PHP Code:
    while ($time >= $nextinterest) {
        
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
        echo 
$nextinterest;
        echo 
"<br />";
        
//$nextinterest = ($nextinterest + $action['interestincrement']);
    
}
    die(); 
you will notice an infinite loop.
All echoing the same number.
Now replace it with this:
PHP Code:
    $amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
    
$nextinterest = ($nextinterest $action['interestincrement']); 
And the bank will work.

// End rant


I still have other problems to look into and an Uninstaller to code before I release Beta 2.
LOL @

Quote:
I will pay $25k to the person that can explain to me why the original coder of the uCS hack coded an infinite loop in order to do a calculation not dependant on the loop result. At all.
look like everything will be alright, cus my shop is just there for nothing :P
  #438  
Old 02-08-2006, 05:44 PM
shaynehammy shaynehammy is offline
 
Join Date: Jan 2006
Posts: 217
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is this version stable for us to install?
  #439  
Old 02-08-2006, 05:48 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As it says already, no!
  #440  
Old 02-08-2006, 06:15 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by shaynehammy
Is this version stable for us to install?
Almost.
  #441  
Old 02-08-2006, 06:54 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where's the lovely Beta 2? Where is it?!
Closed Thread


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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:35 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05824 seconds
  • Memory Usage 2,318KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete