Jump to content

gee001

Members
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Bauang La Union

Recent Profile Visitors

2882 profile views

gee001's Achievements

Poring

Poring (1/15)

0

Reputation

  1. what if random messages? like "Random 1" , "Random 2" ? how to do this.
  2. All Guides Needed - Step by Step Tutorials Custom Scripts
  3. i'm looking for referral system too. i'm looking for fluxcp referal, like in your account in fluxcp or any control panels, there is a referal link to be created for my account for example. this is how it should work. we have player A,B and C Player A shared his/her account referal link on facebook. player B saw it and then clicked the link. Player A will have +1 cashpoint or any points or item ex.(TCG) and then when he/she login on control panel he will choose what character will claim the points if Player B clicked and created account using the referal link of Player A Player A will have +5 cashpoint or any points or item ex.(TCG) and then when he/she login on control panel he will choose what character will claim the points but there will be an ip check for abusers other idea is in creating account on control panel there is an banner/photo that players should share on their facebook or any social media to complete registration. and lastly can we make a link to social media addon or anything that can automatic post banner/photo to their facebook accounts or any social media sites. that is all.. thank you in advance
  4. [08-Oct-2013 14:37:34 Asia/Manila] PHP Parse error: syntax error, unexpected '<' in /home/sacredro/public_html/themes/default/header.php on line 2 this is my error. and this is my theme/default/header.php <?php if (!defined('FLUX_ROOT')) exit; require_once(FLUX_ROOT.'/'.FLUX_ADDON_DIR.'/support/modules/support/function.php'); <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php if (isset($metaRefresh)): ?> <meta http-equiv="refresh" content="<?php echo $metaRefresh['seconds'] ?>; URL=<?php echo $metaRefresh['location'] ?>" /> <?php endif ?> <title><?php echo Flux::config('SiteTitle'); if (isset($title)) echo ": $title" ?></title> <link rel="stylesheet" href="<?php echo $this->themePath('css/flux.css') ?>" type="text/css" media="screen" title="" charset="utf-8" /> <link href="<?php echo $this->themePath('css/flux/unitip.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" /> <?php if (Flux::config('EnableReCaptcha')): ?> <link href="<?php echo $this->themePath('css/flux/recaptcha.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" /> <?php endif ?> <!--[if IE]> <link rel="stylesheet" href="<?php echo $this->themePath('css/flux/ie.css') ?>" type="text/css" media="screen" title="" charset="utf-8" /> <![endif]--> <!--[if lt IE 9]> <script src="<?php echo $this->themePath('js/ie9.js') ?>" type="text/javascript"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.unitpngfix.js') ?>"></script> <![endif]--> <script type="text/javascript" src="<?php echo $this->themePath('js/jquery-1.8.3.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.datefields.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.unitip.js') ?>"></script> <script type="text/javascript"> $(document).ready(function(){ var inputs = 'input[type=text],input[type=password],input[type=file]'; $(inputs).focus(function(){ $(this).css({ 'background-color': '#f9f5e7', 'border-color': '#dcd7c7', 'color': '#726c58' }); }); $(inputs).blur(function(){ $(this).css({ 'backgroundColor': '#ffffff', 'borderColor': '#dddddd', 'color': '#444444' }, 500); }); $('.menuitem a').hover( function(){ $(this).fadeTo(200, 0.85); $(this).css('cursor', 'pointer'); }, function(){ $(this).fadeTo(150, 1.00); $(this).css('cursor', 'normal'); } ); $('.money-input').keyup(function() { var creditValue = parseInt($(this).val() / <?php echo Flux::config('CreditExchangeRate') ?>, 10); if (isNaN(creditValue)) $('.credit-input').val('?'); else $('.credit-input').val(creditValue); }).keyup(); $('.credit-input').keyup(function() { var moneyValue = parseFloat($(this).val() * <?php echo Flux::config('CreditExchangeRate') ?>); if (isNaN(moneyValue)) $('.money-input').val('?'); else $('.money-input').val(moneyValue.toFixed(2)); }).keyup(); // In: js/flux.datefields.js processDateFields(); }); function reload(){ window.location.href = '<?php echo $this->url ?>'; } </script> <script type="text/javascript"> function updatePreferredServer(sel){ var preferred = sel.options[sel.selectedIndex].value; document.preferred_server_form.preferred_server.value = preferred; document.preferred_server_form.submit(); } // Preload spinner image. var spinner = new Image(); spinner.src = '<?php echo $this->themePath('img/spinner.gif') ?>'; function refreshSecurityCode(imgSelector){ $(imgSelector).attr('src', spinner.src); // Load image, spinner will be active until loading is complete. var clean = <?php echo Flux::config('UseCleanUrls') ? 'true' : 'false' ?>; var image = new Image(); image.src = "<?php echo $this->url('captcha') ?>"+(clean ? '?nocache=' : '&nocache=')+Math.random(); $(imgSelector).attr('src', image.src); } function toggleSearchForm() { //$('.search-form').toggle(); $('.search-form').slideToggle('fast'); } </script> <?php if (Flux::config('EnableReCaptcha') && Flux::config('ReCaptchaTheme')): ?> <script type="text/javascript"> var RecaptchaOptions = { theme : '<?php echo Flux::config('ReCaptchaTheme') ?>' }; </script> <?php endif ?> </head> <body> <table cellspacing="0" cellpadding="0" width="100%"> <tr> <!-- Header --> <td bgcolor="#8ebceb" width="20"></td> <td bgcolor="#8ebceb" colspan="3"> <a href="<?php echo $this->basePath ?>"> <img src="<?php echo $this->themePath($session->account->group_level >= Flux::config('AdminMenuGroupLevel') ? 'img/logo_admin.gif' : 'img/logo.gif') ?>" id="logo" /> </a> </td> <td bgcolor="#8ebceb" width="20"></td> </tr> <tr> <!-- Spacing between header and content --> <td colspan="3" height="20"></td> </tr> <tr> <td style="padding: 10px"></td> <td width="198"> <!-- Sidebar --> <?php include 'main/sidebar.php' ?> </td> <!-- Spacing between sidebar and content --> <td style="padding: 10px"></td> <td width="100%"> <!-- Login box / User information --> <?php include 'main/loginbox.php' ?> <!-- Content --> <table cellspacing="0" cellpadding="0" width="100%" id="content"> <tr> <td width="18"><img src="<?php echo $this->themePath('img/content_tl.gif') ?>" style="display: block" /></td> <td bgcolor="#f5f5f5"></td> <td width="18"><img src="<?php echo $this->themePath('img/content_tr.gif') ?>" style="display: block" /></td> </tr> <tr> <td bgcolor="#f5f5f5"></td> <td bgcolor="#f5f5f5"> <?php if (Flux::config('DebugMode') && @gethostbyname(Flux::config('ServerAddress')) == '127.0.0.1'): ?> <p class="notice">Please change your <strong>ServerAddress</strong> directive in your application config to your server's real address (e.g., myserver.com).</p> <?php endif ?> <!-- Messages --> <?php if ($message=$session->getMessage()): ?> <p class="message"><?php echo htmlspecialchars($message) ?></p> <?php endif ?> <!-- Sub menu --> <?php include 'main/submenu.php' ?> <!-- Page menu --> <?php include 'main/pagemenu.php' ?> <!-- Credit balance --> <?php if (in_array($params->get('module'), array('donate', 'purchase'))) include 'main/balance.php' ?> can anyone help me on this asap, please. thanks in advance
  5. what if i have 2 castles per woe time : main(ex. krim) & secondary(ex.ysnelph) i want different prize for each castle. ex. for main caslte owner. i want the guild leader to have 30tcg(7227) + 50btix(7199) for secondary caslte owner. i want the guild leader to have 25tcg + 50 btix. this is for monday woe time only. because every woe, 2 castles are open. main and secondary. thanks in advance
  6. invek,144,175,5 script WoE Prize 734,{ if ( agitcheck() ) { mes "A war is currently in progress"; mes "If your guild owned a castle ask your guild master to see me to claim the reward"; close; } while(.castlename$[set(.@a,.@a+1)]!="") if ( getcastledata( .castlename$[.@a],1 ) == getcharid(2) ) { if ( $castle_claimed[.@a] ) { mes "your guild already received the reward"; close; } else if ( getmapguildusers( getcharid(0) ) == getcharid(0) ) { mes "receiving the reward for "+ .castlename$[.@a]; getitem 12035,1; // some mathematics ... set $castle_claimed[.@a],1; close; } else { mes "ask your guild master to see me"; close; } } mes "Your guild failed to take reward"; mes "if your guild owned a castle ask your guild master to claim reward from me"; close; OnAgitEnd: deletearray $castle_claimed[0], 128; // everytime woe ends the variable resets end; OnInit: setarray .castlename$[1], "aldeg_cas01", "aldeg_cas02", "aldeg_cas03", "aldeg_cas04", "aldeg_cas05", "gefg_cas01", "gefg_cas02", "gefg_cas03", "gefg_cas04", "gefg_cas05", "payg_cas01", "payg_cas02", "payg_cas03", "payg_cas04", "payg_cas05", "prtg_cas01", "prtg_cas02", "prtg_cas03", "prtg_cas04", "prtg_cas05", "arug_cas01", "arug_cas02", "arug_cas03", "arug_cas04", "arug_cas05"; waitingroom "WOE Prize Giver",0; end; } how about when i have 2 castles per woe time. i have the "main castle" & "secondary castle". i want to give a price for the owner of main castle and secondary castle. but i want this prizes. -main castle prize = 30 tcg(7227) + 50 Btix(7199) -secondary castle prize = 25 tcg(7227) + 50 btix.(7199) but i want the guild owner to be the one to claim the prizes. thanks in advance.
  7. hi there. i am requesting for newbie tour guide npc: like tour guides in real world. i'd like a npc that tours the newbies to let them know the location of the important NPCs like: golds seller, berry changer, gold room warper, etc.. etc.. - i want the players to be warped near the NPC - with informations about the npc. ex. warped to gods seller npc mes:[Tour Guide] mes:This is our Gods Seller NPC mes:You can buys Gods Items here like: megs,briss,etc. next; atcommand "@warp,xxxx,xxx,xxx" // warp to the next npc then with information of the npc again. and so on and so fort. continous. thanks in advance
  8. do you have free sir for like me. a newbie.
  9. i need stats seller npc. pls help me im a newbie.. tnx in advance
×
×
  • Create New...