Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Alguien que cambie wcoins por Creditos o Cash este modulo  (Visto 2635 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline AleCarolina Posteado: June 20, 2017, 01:11:19 PM

  • Diseñador
  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 94
  • ve
buenas vi este modulo que publico @FrancoB y quisiera que me ayudaran a cambiar la forma de compra en vez de ser wcoins que sea creditos o cash con los files mu emu xteam saludos aca dejo el codigo php

Code: [Select]
<style type="text/css">
.bronze{display:show;}
.silver{display:none;}
.gold{display:none;}
.platinum{display:none;}

</style>



<script type="text/javascript">
  top.visible_div_id = 'bronze';
  function toggle_visibility(id) {
     var old_e = document.getElementById(top.visible_div_id);
     var new_e = document.getElementById(id);
     if(old_e) {
        console.log('old', old_e, 'none');
        old_e.style.display = 'none';
     }
    console.log('new', new_e, 'block');
     new_e.style.display = 'block';   
     top.visible_div_id = id;         
  }
  </script>


<?
echo "<script type=\"text/javascript\">document.getElementById(\"h4\").innerHTML = \"Upgrade your account to VIP user\"</script>
<input type='hidden' id='module_contet' value='Upgrade your account to VIP user'>";
   
$load_vip_settings = simplexml_load_file('engine/config_mods/get_vip.xml');
$bronze = explode(",",trim($load_vip_settings->bronze));
$silver = explode(",",trim($load_vip_settings->silver));
$gold = explode(",",trim($load_vip_settings->gold));
$platinum = explode(",",trim($load_vip_settings->platinum));

$link_identifier = mssql_connect($core['db_host'], $core['db_user'], $core['db_password']);
mssql_select_db($core['db_name'], $link_identifier);

$exist = $core_db->Execute("Select memb___id from MEMB_INFO where memb___id=?",array($user_auth_id));
if($exist->EOF)
{
mssql_query("INSERT INTO MEMB_INFO(memb___id,AccountExpireDate,AccountLevel) VALUES ('$user_auth_id',NULL,NULL)");
}   

if (isset($_POST['get_vip1']))
{
$viptime = htmlspecialchars($_POST['viptime1'],ENT_QUOTES);
  $result2 = mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");
$myrow2 = mssql_fetch_array($result2);
if ($viptime == NULL )
{
echo msg('0',"VIP period was not found.");
}
 
  switch($viptime)
    {
      case '10' : $kredit = $bronze[0];
        break;
      case '30' : $kredit = $bronze[1];
        break;
      case '60' : $kredit = $bronze[2];
        break;
      default   : echo msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['WCoinC'] < $kredit)
{

    echo msg('0',"Not enough credits.");
}
else
{
    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
$select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
$result = mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
if (mssql_num_rows($result) > 0)
{
$myrow = mssql_fetch_array($result);
if ($checkStatus > 0)
{
echo msg('0',"You have already active VIP status.");
}
else
{
  $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='1' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");
        echo msg('1',"VIP status was successfully bought.");
}
}
}
}
if (isset($_POST['get_vip2']))
{
$viptime = htmlspecialchars($_POST['viptime2'],ENT_QUOTES);
  $result2 = mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");
$myrow2 = mssql_fetch_array($result2);
if ($viptime == NULL )
{
echo msg('0',"VIP period was not found.");
}
 

    switch($viptime)
    {
      case '10' : $kredit = $silver[0];
        break;
      case '30' : $kredit = $silver[1];
        break;
      case '60' : $kredit = $silver[2];
        break;
      default   : echo msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['WCoinC'] < $kredit)
{

    echo msg('0',"No tienes los wCoinC necesarios en tu cuenta.");
}
else
{
$result = mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");

    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
$select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
     
    if (mssql_num_rows($result) > 0)
{
$myrow = mssql_fetch_array($result);
if ($checkStatus > 0)
{
echo msg('0',"Tienes una membresia VIP ya activa.");
}
else
{
  $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='2' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");
        echo msg('1',"¡BIENVENIDO AL CLUB VIP! Tu membresia a sido activada .");
}
}
}
}
if (isset($_POST['get_vip3']))
{
$viptime = htmlspecialchars($_POST['viptime3'],ENT_QUOTES);
  $result2 = mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");
$myrow2 = mssql_fetch_array($result2);
if ($viptime == NULL )
{
echo msg('0',"VIP period was not found.");
}
 
switch($viptime)
    {
      case '10' : $kredit = $gold[0];
        break;
      case '30' : $kredit = $gold[1];
        break;
      case '60' : $kredit = $gold[2];
        break;
      default   : echo msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits'] < $kredit)
{

    echo msg('0',"Not enough credits.");
}
else
{
$result = mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
if (mssql_num_rows($result) > 0)
{
$myrow = mssql_fetch_array($result);
if ($checkStatus > 0)
{
echo msg('0',"You have already active VIP status.");
}
else
{
  $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',Type ='3' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");
        echo msg('1',"VIP status was successfully bought.");
}
}
}
}
if (isset($_POST['get_vip4']))
{
$viptime = htmlspecialchars($_POST['viptime4'],ENT_QUOTES);
  $result2 = mssql_query("select credits from MEMB_CREDITS where memb___id='$user_auth_id'");
$myrow2 = mssql_fetch_array($result2);
if ($viptime == NULL )
{
echo msg('0',"VIP period was not found.");
}
 

    switch($viptime)
    {
      case '10' : $kredit = $platinum[0];
        break;
      case '30' : $kredit = $platinum[1];
        break;
      case '60' : $kredit = $platinum[2];
        break;
      default   : echo msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits'] < $kredit)
{

    echo msg('0',"Not enough credits.");
}
else
{
$result = mssql_query("select Type from T_VIPList where AccountID='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['Date']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
if (mssql_num_rows($result) > 0)
{
$myrow = mssql_fetch_array($result);
if ($checkStatus > 0)
{
echo msg('0',"You have already active VIP status.");
}
else
{
  $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);
        mssql_query("update T_VIPList set Date='$small',Type ='4' WHERE AccountID='$user_auth_id'");
        mssql_query("update MEMB_CREDITS set credits= credits-".$kredit." where memb___id='$user_auth_id'");
        echo msg('1',"VIP status was successfully bought.");
}
}
}
}
?>

<br><br>
<center>
   
   
   
   
   
    <h1><i class=" fa fa-money" aria-hidden="true"></i>&nbsp;Comprar VIP</h1>
    &nbsp;
    &nbsp;
   
        <div class="alert alert-info">
  <h2 class="tips-ayudas-color"><i class="fa fa-info-circle" aria-hidden="true"></i>&nbsp;INFORMACI&Oacute;N PARA COMPRAR VIP</h2>
  <p class="alert-info">
  No nos hacemos cargo por el mal uso del modulo:<br><br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Una vez hecha la compra no habra devolucion.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Solo podras comprar una opcion de VIP, elegi bien.<br>
        <i class="fa fa-check" aria-hidden="true"></i>&nbsp;LOS DIAS VIP SE COMPRAN POR WCOIN C.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;TODO esta especificado, leer bien antes de efectuar algun movimiento.<br>
    </p>
</div>

 &nbsp;
    &nbsp;
   
   
   
    <form method="post" action="">

    <label class="control-label">Tipo de VIP</label>

<select class="form-control" style="width: 120px" name="type" onchange="toggle_visibility(this.value);">
                <option value="gold" selected>VIP Gold</option>
                <option value="silver" selected>VIP Silver</option>
                <option value="bronze" selected>VIP Bronze</option>
</select>
 

<div id="bronze" class="bronze" align="center" ><br>
<label class="control-label">Tiempo | WCoin C</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime1" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $bronze[1];?> WCoin C</option>
<option value="60">VIP por 60 dias | <? echo $bronze[2];?> WCoin C</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip1" value="Adquirir membresia"><br><br>
</form>
</div>

<div id="silver" class="silver" align="center"><br>
<label class="control-label">Tiempo | WCoin C</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $silver[1];?> WCoin C</option>
<option value="60">VIP por 60 dias | <? echo $silver[2];?> WCoin C</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip2" value="Adquirir membresia"><br><br>
</form>
</div>


<div id="gold" class="gold" align="center"><br>
<label class="control-label">Tiempo | WCoin C</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $gold[1];?> WCoin C</option>
<option value="60">VIP por 60 dias | <? echo $gold[2];?> WCoin C</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip3" value="Adquirir membresia"><br><br>
</form>
</div>

</center>


<br>

<ul>
  <p></p><b>Ventajas de las Membresias VIP:</b></p>
  <p><font color="#CD7F32"><strong>VIP Bronze</strong></font>: +150x exp, +X MasterEXP, +Rates 5%</p>
<p><font color="#CD7F32"><strong>VIP Silver</strong></font>: +250x exp, +X MasterEXP, +Rates 10%</p>
<p><font color="#CD7F32"><strong>VIP Gold</strong></font>: +350x exp, +X MasterEXP, +Rates 15%</p>
<p></ul>

Gracias:


Offline hardpower #1 Posteado: June 20, 2017, 02:31:19 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 31
  • Gracias recibida: 17
  • py

Offline AleCarolina #2 Posteado: June 20, 2017, 02:50:57 PM

  • Diseñador
  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 94
  • ve
@hardpower sirve para comprar vip directamente de la pagina con creditos .


Offline hardpower #3 Posteado: June 20, 2017, 02:56:51 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 31
  • Gracias recibida: 17
  • py
y funciona?
Puedo ser vip por 30 dias, por 500 creditos por ejemplo?
funciona el modulo?


Offline AleCarolina #4 Posteado: June 20, 2017, 02:58:44 PM

  • Diseñador
  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 94
  • ve

Offline hardpower #5 Posteado: June 20, 2017, 03:02:57 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 31
  • Gracias recibida: 17
  • py
Ese es el modulo? no se necesita nada mas? ninguna imagen ni nada? solo ese?
Pero ahi dice que es por WCOIN y no por CREDITOS
o como


Offline Flash #6 Posteado: October 07, 2019, 07:23:09 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 244
  • Gracias recibida: 1625
  • uy
 drogado deja me tomo la molestia y te lo aporto al rato quedara de ti y el resto testear para q funcione ya que yo lo armare para MVCore  y el codigo q tu posteas es de webengine saludos al rato e mando el codigo.


Offline Flash #7 Posteado: October 07, 2019, 10:36:06 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 244
  • Gracias recibida: 1625
  • uy
@AleCarolina fijate si te funciona a hora le puse las monedas q usa muemu que serian credits y credits2

Spoiler for Hiden:
<style type="text/css">
.bronze{display:show;}
.silver{display:none;}
.gold{display:none;}
.platinum{display:none;}

</style>



<script type="text/javascript">
  top.visible_div_id = 'bronze';
  function toggle_visibility(id) {
     var old_e = document.getElementById(top.visible_div_id);
     var new_e = document.getElementById(id);
     if(old_e) {
        console.log('old', old_e, 'none');
        old_e.style.display = 'none';
     }
    console.log('new', new_e, 'block');
     new_e.style.display = 'block';   
     top.visible_div_id = id;         
  }
  </script>


<?
echo "<script type=\"text/javascript\">document.getElementById(\"h4\").innerHTML = \"Upgrade your account to VIP user\"</script>
      <input type='hidden' id='module_contet' value='Upgrade your account to VIP user'>";
   
$load_vip_settings = simplexml_load_file('engine/config_mods/get_vip.xml');
$bronze = explode(",",trim($load_vip_settings->bronze));
$silver = explode(",",trim($load_vip_settings->silver));
$gold = explode(",",trim($load_vip_settings->gold));
$platinum = explode(",",trim($load_vip_settings->platinum));

$link_identifier = mssql_connect($core['db_host'], $core['db_user'], $core['db_password']);
mssql_select_db($core['db_name'], $link_identifier);

$exist = $core_db->Execute("Select memb___id from MEMB_INFO where memb___id=?",array($user_auth_id));
if($exist->EOF)
{
mssql_query("INSERT INTO MEMB_INFO(memb___id,AccountExpireDate,AccountLevel) VALUES ('$user_auth_id',NULL,NULL)");
}   

if (isset($_POST['get_vip1']))
{
   $viptime   =   htmlspecialchars($_POST['viptime1'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
  switch($viptime)
    {
      case '10' : $kredit = $bronze[0];
        break;
      case '30' : $kredit = $bronze[1];
        break;
      case '60' : $kredit = $bronze[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
      $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
            $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='1' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
if (isset($_POST['get_vip2']))
{
   $viptime   =   htmlspecialchars($_POST['viptime2'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 

    switch($viptime)
    {
      case '10' : $kredit = $silver[0];
        break;
      case '30' : $kredit = $silver[1];
        break;
      case '60' : $kredit = $silver[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"No tienes los credits necesarios en tu cuenta.");
   }
   else
   {
      $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
      
    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
      $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
     
    if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"Tienes una membresia VIP ya activa.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='2' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"¡BIENVENIDO AL CLUB VIP! Tu membresia a sido activada .");
         }
      }
   }
}
if (isset($_POST['get_vip3']))
{
   $viptime   =   htmlspecialchars($_POST['viptime3'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
   switch($viptime)
    {
      case '10' : $kredit = $gold[0];
        break;
      case '30' : $kredit = $gold[1];
        break;
      case '60' : $kredit = $gold[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
      $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',Type ='3' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
if (isset($_POST['get_vip4']))
{
   $viptime   =   htmlspecialchars($_POST['viptime4'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from MEMB_CREDITS where memb___id='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
   
    switch($viptime)
    {
      case '10' : $kredit = $platinum[0];
        break;
      case '30' : $kredit = $platinum[1];
        break;
      case '60' : $kredit = $platinum[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
      $result      =   mssql_query("select Type from T_VIPList where AccountID='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['Date']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update T_VIPList set Date='$small',Type ='4' WHERE AccountID='$user_auth_id'");
        mssql_query("update MEMB_CREDITS set credits= credits-".$kredit." where memb___id='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
?>

<br><br>
<center>
   
   
   
   
   
    <h1><i class="   fa fa-money" aria-hidden="true"></i>&nbsp;Comprar VIP</h1>
    &nbsp;
    &nbsp;
   
        <div class="alert alert-info">
  <h2 class="tips-ayudas-color"><i class="fa fa-info-circle" aria-hidden="true"></i>&nbsp;INFORMACI&Oacute;N PARA COMPRAR VIP</h2>
  <p class="alert-info">
     No nos hacemos cargo por el mal uso del modulo:<br><br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Una vez hecha la compra no habra devolucion.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Solo podras comprar una opcion de VIP, elegi bien.<br>
        <i class="fa fa-check" aria-hidden="true"></i>&nbsp;LOS DIAS VIP SE COMPRAN POR credits o credits2.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;TODO esta especificado, leer bien antes de efectuar algun movimiento.<br>
    </p>
</div>

 &nbsp;
    &nbsp;
   
   
   
    <form method="post" action="">
            
                <label class="control-label">Tipo de VIP</label>

<select class="form-control" style="width: 120px" name="type" onchange="toggle_visibility(this.value);">
                <option value="gold" selected>VIP Gold</option>
                <option value="silver" selected>VIP Silver</option>
                <option value="bronze" selected>VIP Bronze</option>
</select>
              

<div id="bronze" class="bronze" align="center" ><br>
<label class="control-label">Tiempo |credits</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime1" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $bronze[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $bronze[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip1" value="Adquirir membresia"><br><br>
</form>
</div>

<div id="silver" class="silver" align="center"><br>
<label class="control-label">Tiempo |credits</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $silver[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $silver[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip2" value="Adquirir membresia"><br><br>
</form>
</div>


<div id="gold" class="gold" align="center"><br>
<label class="control-label">Tiempo | <style type="text/css">
.bronze{display:show;}
.silver{display:none;}
.gold{display:none;}
.platinum{display:none;}

</style>



<script type="text/javascript">
  top.visible_div_id = 'bronze';
  function toggle_visibility(id) {
     var old_e = document.getElementById(top.visible_div_id);
     var new_e = document.getElementById(id);
     if(old_e) {
        console.log('old', old_e, 'none');
        old_e.style.display = 'none';
     }
    console.log('new', new_e, 'block');
     new_e.style.display = 'block';   
     top.visible_div_id = id;         
  }
  </script>


<?
echo "<script type=\"text/javascript\">document.getElementById(\"h4\").innerHTML = \"Upgrade your account to VIP user\"</script>
      <input type='hidden' id='module_contet' value='Upgrade your account to VIP user'>";
   
$load_vip_settings = simplexml_load_file('engine/config_mods/get_vip.xml');
$bronze = explode(",",trim($load_vip_settings->bronze));
$silver = explode(",",trim($load_vip_settings->silver));
$gold = explode(",",trim($load_vip_settings->gold));
$platinum = explode(",",trim($load_vip_settings->platinum));

$link_identifier = mssql_connect($core['db_host'], $core['db_user'], $core['db_password']);
mssql_select_db($core['db_name'], $link_identifier);

$exist = $core_db->Execute("Select memb___id from MEMB_INFO where memb___id=?",array($user_auth_id));
if($exist->EOF)
{
mssql_query("INSERT INTO MEMB_INFO(memb___id,AccountExpireDate,AccountLevel) VALUES ('$user_auth_id',NULL,NULL)");
}   

if (isset($_POST['get_vip1']))
{
   $viptime   =   htmlspecialchars($_POST['viptime1'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
  switch($viptime)
    {
      case '10' : $kredit = $bronze[0];
        break;
      case '30' : $kredit = $bronze[1];
        break;
      case '60' : $kredit = $bronze[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
      $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
            $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='1' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
if (isset($_POST['get_vip2']))
{
   $viptime   =   htmlspecialchars($_POST['viptime2'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 

    switch($viptime)
    {
      case '10' : $kredit = $silver[0];
        break;
      case '30' : $kredit = $silver[1];
        break;
      case '60' : $kredit = $silver[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"No tienes los credits necesarios en tu cuenta.");
   }
   else
   {
      $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
      
    $select = mssql_query("select AccountLevel,AccountExpireDate,memb___id from MEMB_INFO where memb___id='$user_auth_id'");   
      $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
     
    if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"Tienes una membresia VIP ya activa.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',AccountLevel ='2' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"¡BIENVENIDO AL CLUB VIP! Tu membresia a sido activada .");
         }
      }
   }
}
if (isset($_POST['get_vip3']))
{
   $viptime   =   htmlspecialchars($_POST['viptime3'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
   switch($viptime)
    {
      case '10' : $kredit = $gold[0];
        break;
      case '30' : $kredit = $gold[1];
        break;
      case '60' : $kredit = $gold[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
      $result      =   mssql_query("select AccountLevel from MEMB_INFO where memb___id='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['AccountExpireDate']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update MEMB_INFO set AccountExpireDate='$small',Type ='3' WHERE memb___id='$user_auth_id'");
        mssql_query("update CashShopData set credits= credits-".$kredit." where AccountID='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
if (isset($_POST['get_vip4']))
{
   $viptime   =   htmlspecialchars($_POST['viptime4'],ENT_QUOTES);
  $result2   =   mssql_query("select credits from MEMB_CREDITS where memb___id='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }
 
   
    switch($viptime)
    {
      case '10' : $kredit = $platinum[0];
        break;
      case '30' : $kredit = $platinum[1];
        break;
      case '60' : $kredit = $platinum[2];
        break;
      default   : echo   msg('0',"VIP period was not found.");
        break;
    }
 
  if ($myrow2['credits']   <   $kredit)
   {
      
    echo   msg('0',"Not enough credits.");
   }
   else
   {
      $result      =   mssql_query("select Type from T_VIPList where AccountID='$user_auth_id'");
    $select_req = mssql_fetch_array($select);
    $actualDate = time();
    $vipEndDate = strtotime($select_req['Date']);
    $checkStatus =  ($vipEndDate) - ($actualDate);
      if (mssql_num_rows($result)   >   0)
      {
         $myrow   =   mssql_fetch_array($result);
         if ($checkStatus   >   0)
         {
            echo   msg('0',"You have already active VIP status.");
         }
         else
         {
           $cas = time()+$viptime*86400;   
        $small = date("Y-m-d H:i:s",$cas);   
        mssql_query("update T_VIPList set Date='$small',Type ='4' WHERE AccountID='$user_auth_id'");
        mssql_query("update MEMB_CREDITS set credits= credits-".$kredit." where memb___id='$user_auth_id'");
        echo   msg('1',"VIP status was successfully bought.");
         }
      }
   }
}
?>

<br><br>
<center>
   
   
   
   
   
    <h1><i class="   fa fa-money" aria-hidden="true"></i>&nbsp;Comprar VIP</h1>
    &nbsp;
    &nbsp;
   
        <div class="alert alert-info">
  <h2 class="tips-ayudas-color"><i class="fa fa-info-circle" aria-hidden="true"></i>&nbsp;INFORMACI&Oacute;N PARA COMPRAR VIP</h2>
  <p class="alert-info">
     No nos hacemos cargo por el mal uso del modulo:<br><br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Una vez hecha la compra no habra devolucion.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;Solo podras comprar una opcion de VIP, elegi bien.<br>
        <i class="fa fa-check" aria-hidden="true"></i>&nbsp;LOS DIAS VIP SE COMPRAN POR credits o credits2.<br>
    <i class="fa fa-check" aria-hidden="true"></i>&nbsp;TODO esta especificado, leer bien antes de efectuar algun movimiento.<br>
    </p>
</div>

 &nbsp;
    &nbsp;
   
   
   
    <form method="post" action="">
            
                <label class="control-label">Tipo de VIP</label>

<select class="form-control" style="width: 120px" name="type" onchange="toggle_visibility(this.value);">
                <option value="gold" selected>VIP Gold</option>
                <option value="silver" selected>VIP Silver</option>
                <option value="bronze" selected>VIP Bronze</option>
</select>
              

<div id="bronze" class="bronze" align="center" ><br>
<label class="control-label">Tiempo |credits</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime1" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $bronze[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $bronze[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip1" value="Adquirir membresia"><br><br>
</form>
</div>

<div id="silver" class="silver" align="center"><br>
<label class="control-label">Tiempo |credits</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $silver[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $silver[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip2" value="Adquirir membresia"><br><br>
</form>
</div>


<div id="gold" class="gold" align="center"><br>
<label class="control-label">Tiempo |credits</label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $gold[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $gold[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip3" value="Adquirir membresia"><br><br>
</form>
</div>

</center>


<br>

<ul>
  <p></p><b>Ventajas de las Membresias VIP:</b></p>
  <p><font color="#CD7F32"><strong>VIP Bronze</strong></font>: +150x exp, +X MasterEXP, +Rates 5%</p>
<p><font color="#CD7F32"><strong>VIP Silver</strong></font>: +250x exp, +X MasterEXP, +Rates 10%</p>
<p><font color="#CD7F32"><strong>VIP Gold</strong></font>: +350x exp, +X MasterEXP, +Rates 15%</p>
<p></ul></label>
<form action="" method="post" onsubmit="request("form_vip","sh_","POST","getpage.php?cat=Get-VIP"); return false;" id="form_vip">
<select name="viptime2" class="form-control" style="margin-bottom:10px; width:250px;">
<option value="30">VIP por 30 dias | <? echo $gold[1];?>credits</option>
<option value="60">VIP por 60 dias | <? echo $gold[2];?>credits2</option>
</select>
<input class="btn btn-success btn-lg" type="submit" name="get_vip3" value="Adquirir membresia"><br><br>
</form>
</div>

</center>


<br>

<ul>
  <p></p><b>Ventajas de las Membresias VIP:</b></p>
  <p><font color="#CD7F32"><strong>VIP Bronze</strong></font>: +150x exp, +X MasterEXP, +Rates 5%</p>
<p><font color="#CD7F32"><strong>VIP Silver</strong></font>: +250x exp, +X MasterEXP, +Rates 10%</p>
<p><font color="#CD7F32"><strong>VIP Gold</strong></font>: +350x exp, +X MasterEXP, +Rates 15%</p>
<p></ul>


Offline MuvnzPlus #8 Posteado: May 04, 2022, 09:24:05 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 438
  • Gracias recibida: 72
  • ve
Mi pregunta es donde puedo ver la cantidad de Creditos o wcoins que cuesta el vip


Offline MuvnzPlus #9 Posteado: May 04, 2022, 09:53:33 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 438
  • Gracias recibida: 72
  • ve
funciona correctamente pero no descuenta nada como puedo ponerlo a desconectar el costo de cada vip


Offline 102pe #10 Posteado: May 26, 2022, 03:55:39 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 316
  • Gracias recibida: 6032
  • pe
@AleCarolina Hola, cambia estas lineas. En cada una de estas se hace la consulta por WCoinC. Basta que cambies de moneda y listo:

if (isset($_POST['get_vip1']))
{
   $viptime   =   htmlspecialchars($_POST['viptime1'],ENT_QUOTES);
  $result2   =   mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");
   $myrow2      =   mssql_fetch_array($result2);
   if ($viptime   ==   NULL )
   {
      echo   msg('0',"VIP period was not found.");
   }


mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");

 $result2   =   mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");

echo   msg('0',"No tienes los wCoinC necesarios en tu cuenta.");

mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");

$result2   =   mssql_query("select WCoinC from CashShopData where AccountID='$user_auth_id'");

  mssql_query("update CashShopData set WCoinC= WCoinC-".$kredit." where AccountID='$user_auth_id'");


Saludos,
Jadoo
Contacto:
1. WhatsApp Link disponible para celular o Web WhatsApp

Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
0 Replies
699 Views
Last post June 13, 2017, 04:29:37 PM
by humito
2 Replies
1481 Views
Last post August 16, 2017, 07:25:00 PM
by conejowolf
1 Replies
1003 Views
Last post August 17, 2018, 03:19:33 PM
by Deidad
2 Replies
913 Views
Last post June 01, 2019, 11:04:31 AM
by MOYOne
0 Replies
470 Views
Last post April 24, 2020, 09:11:06 PM
by marvisur