Shakes & Fidget Private - Full Script (Tulyita)

05/13/2014 21:17 TheCry#271
lubie4story... If you think, that creating such a script it 5-10 min perhaps you will write it so will you make the script and give it publicly? Hah? Don't don't offend him...
05/14/2014 00:37 UND3RW0RLD#272
I don't see the problem.. All ppl here can get more than enough for free. Use your brain and make sth unique.. You don't need to buy files and ofc you don't need to beg for them.

this is what I did just today..
-> usermanagement
-> eventhandler
-> itemcreator
-> questcreator
and lots of other stuff. (Ok you don't see much, but it's private for security reasons.) my point is: use your head and just code what you want.
[Only registered and activated users can see links. Click Here To Register...]

ps. ofc i dont sell it

pps. and thx to Tulyita for your great work btw. :)
05/14/2014 15:58 szymek111#273
Quote:
Originally Posted by lubie4story View Post
Omg, tulyita you private script is for 5-10 minutes making.. U want 10 € for this? You dont have brain? Who buy from you this? Nothing.. All wait for you heart and u give for free again it :-)
Gratulation man
#Close_request
Then do it yourself omg if it's 10 minutes to made it .
05/14/2014 16:53 tulyita#274
Quote:
Originally Posted by lubie4story View Post
Omg, tulyita you private script is for 5-10 minutes making.. U want 10 € for this? You dont have brain? Who buy from you this? Nothing.. All wait for you heart and u give for free again it :-)
Gratulation man
#Close_request
I have brain. I just say that I sell it to people who can't programming it. i'm happy if you can do it in 5-10 mins but then do it. Wait, you can't? Well, then why are you posted this? :D Idiot... You're a 10 years old guy, you think if you say this I'll publish it to free. Blah, noob. I will not release it for free until someone buy it. Why you have problem that I sell it? Too lot money? Find another way to get it... But I want money, and I will not release it for free: there's too many guys who didn't deserve it...
05/14/2014 18:42 lubie4story#275
Man im dont have 10 year ;)
I have full make, tower with helpers, dungeon keys are repair, potions dispaly too, silver from arena, arena isn't give players with 0 honor, buy mushroom work ( when u click buy mushroom when u give back code ( not lie cod ) you have mushrooms code deactive.
Bonus code work too, admin panel work.
Magic mirror work in 50%

For 2-3 days i give link for files complete :)
05/14/2014 18:53 EptunLP#276
Thank you lubie4story ! Can u PM me the link when it will be finished? ;)
05/14/2014 19:27 UND3RW0RLD#277
Why PM instead of doing it here EptunLP? This is why tulyita sells his files! Everyone here is very selfish. Ofc excluding tulyita and lubie4story if he really shares his update.
05/14/2014 19:48 EptunLP#278
I want the link because I want to share with you guys
05/14/2014 20:28 tulyita#279
Quote:
Originally Posted by lubie4story View Post
Man im dont have 10 year ;)
I have full make, tower with helpers, dungeon keys are repair, potions dispaly too, silver from arena, arena isn't give players with 0 honor, buy mushroom work ( when u click buy mushroom when u give back code ( not lie cod ) you have mushrooms code deactive.
Bonus code work too, admin panel work.
Magic mirror work in 50%

For 2-3 days i give link for files complete :)
Well if this is true then sure, we wait for it. :D
05/14/2014 20:55 TheCry#280
Tulyita,u done tower?
05/15/2014 14:27 lubie4story#281
Omg, what? What?!

I dont buy tulyita files.. but i have own files.
Polish noob attack me :c
05/15/2014 15:51 eskocze#282
Hi, have any who anti DDOS/DOS/FLOOD? THX
05/15/2014 16:40 UND3RW0RLD#283
The php level is too late in the request chain.

Putting your apache server behind an open source appliance may be a good option for you.

[Only registered and activated users can see links. Click Here To Register...] has some documentation and source code more modules aimed at DDOS prevention. It is a expansion of nginx, so you can easily set it up as a reverse proxy for your apache instance.

See: [Only registered and activated users can see links. Click Here To Register...] for how to fight collision has DoS attacks.

[Only registered and activated users can see links. Click Here To Register...] is one the top free web application firewall, they have free and paid plans and will save your ass from DDOS we use it for alot of our high traffic sites just for its caching capabilities. It is awsome!


a simplier option could be this script, but ofc it's not the same than a real protection.

PHP Code:
<?php        
/* http://stackoverflow.com/questions/12553606/anti-flood-ddos-in-php */
if (!isset($_SESSION)) {
        
session_start();
}
// anti flood protection
if($_SESSION['last_session_request'] < time() - 2){
        
// users will be redirected to this page if it makes requests faster than 2 seconds
        
header("location: http://www.example.com/403.html");
        exit;
}
$_SESSION['last_session_request'] = time();
?>
05/15/2014 19:38 Dmixior#284
Quote:
Originally Posted by lubie4story View Post
Man im dont have 10 year ;)
I have full make, tower with helpers, dungeon keys are repair, potions dispaly too, silver from arena, arena isn't give players with 0 honor, buy mushroom work ( when u click buy mushroom when u give back code ( not lie cod ) you have mushrooms code deactive.
Bonus code work too, admin panel work.
Magic mirror work in 50%

For 2-3 days i give link for files complete :)
If it's true you're big.
05/16/2014 12:19 UND3RW0RLD#285
Search for
PHP Code:
        // if not enought gold
        
if ($db_data ['silver'] < $donation ['silver']) {
            
$ret = array (
                    
$ERR_TOO_EXPENSIVE 
            
);
            break;
        } 
put over it:
PHP Code:
        // Jessis Guildcheat workaround 4 psfgame.de
        
if($donation ['silver'] <= 0)
            
$donation ['silver'] = 0;
        if(
$donation ['mushroom'] <= 0)
            
$donation ['mushroom'] = 0;
        
// end of GC Workaround