Thread: Coins Mod
View Single Post
  #1  
Old 12th February 2022, 12:13
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Red face Coins Mod
[sql]
alter table users add coins decimals(8,2) not null default '20.00';
[/sql]

Code:
<?php
/* everytime you refresh hopefully you obtain $20.00 ontop of your current cash flowz - UnD3RGr0nD-RG */
SQL_Query_exec("UPDATE users SET coins = “.$CURUSER[“coins”].”+20.00 WHERE id = ".$CURUSER["id"]."");
/*
--sql_file_to_obtain---
alter table users add coins decimals(8,2) not null default '10.00';
*/
?>
OR

Code:
<?php
/* everytime you refresh hopefully you obtain $00.01 ontop of your current cash flowz - UnD3RGr0nD-RG */
SQL_Query_exec("UPDATE users SET coins = “.$CURUSER[“coins”].”+00.01 WHERE id = ".$CURUSER["id"]."");
/*
--sql_file_to_obtain---
alter table users add coins decimals(8,2) not null default '6.00';
*/
?>
Reply With Quote