Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Game time 2 ran points

Junior Spellweaver
Joined
Feb 22, 2012
Messages
182
Reaction score
41
-i know there is already a post related on my question.
-but i just wanted to know or ask.
-how to or how make it works.
-because some other threads already gave a PHP code about this matter.


IS THERE ANYONE OUT THERE HAVE A TIME TO SHARE THERE KNOWLEDGE
ABOUT HOW TO MAKE THIS WORK IN MY CP i am using "BlueranCP or also know as BabyranCP :(
 
Junior Spellweaver
Joined
Feb 22, 2012
Messages
182
Reaction score
41
babyran cp have game time to points already

yes sir but it is not working..i mean ....even if you are online for 2days..no game time points to be converted.

-i just wanted to know if there is a way or maybe theres a thing that i shuold do in my SQL ?
-i wanted to knwo how...!



thnx for the response.
 
Upvote 0
Newbie Spellweaver
Joined
May 21, 2009
Messages
45
Reaction score
3
Open your GameTime to Ran Points conversion PHP Code.
Then try to look up the SQL query of what specific column on your ChaInfo did it need.
like this one:

$get_user = mssql_query("SELECT * FROM $dfsql[db4].dbo.UserInfo where UserName = '$_SESSION[___user_]' and UserPass = '$_SESSION[___pass_]'");
while ($user = mssql_fetch_array($get_user)) {
$gt = $user['GameTime2'];

in this case, they will try get the info of the GameTime2 from dbo.UserInfo
Then open your SQL Database>RanUser>dbo.UserInfo>Open Tables,
then try to lookup if that specified column is present.
If not present, then try to figure it out what column in your UserInfo did it records the time of staying in game. After you find it, then change the name same in your database.

Hope you'll understand what i'm pointing out.
 
Upvote 0
Junior Spellweaver
Joined
Feb 22, 2012
Messages
182
Reaction score
41
Open your GameTime to Ran Points conversion PHP Code.
Then try to look up the SQL query of what specific column on your ChaInfo did it need.
like this one:

$get_user = mssql_query("SELECT * FROM $dfsql[db4].dbo.UserInfo where UserName = '$_SESSION[___user_]' and UserPass = '$_SESSION[___pass_]'");
while ($user = mssql_fetch_array($get_user)) {
$gt = $user['GameTime2'];

in this case, they will try get the info of the GameTime2 from dbo.UserInfo
Then open your SQL Database>RanUser>dbo.UserInfo>Open Tables,
then try to lookup if that specified column is present.
If not present, then try to figure it out what column in your UserInfo did it records the time of staying in game. After you find it, then change the name same in your database.

Hope you'll understand what i'm pointing out.






HUURAY...grazyaz...! much thank you sir, DAGHANG SALAMAT
i will to follow those steps.
 
Upvote 0
Junior Spellweaver
Joined
Feb 22, 2012
Messages
182
Reaction score
41
Open your GameTime to Ran Points conversion PHP Code.
Then try to look up the SQL query of what specific column on your ChaInfo did it need.
like this one:

$get_user = mssql_query("SELECT * FROM $dfsql[db4].dbo.UserInfo where UserName = '$_SESSION[___user_]' and UserPass = '$_SESSION[___pass_]'");
while ($user = mssql_fetch_array($get_user)) {
$gt = $user['GameTime2'];

in this case, they will try get the info of the GameTime2 from dbo.UserInfo
Then open your SQL Database>RanUser>dbo.UserInfo>Open Tables,
then try to lookup if that specified column is present.
If not present, then try to figure it out what column in your UserInfo did it records the time of staying in game. After you find it, then change the name same in your database.

Hope you'll understand what i'm pointing out.





-This my Userinfo from my DB sir...!
-Did i miss something?

SS:
1.JPG - Game time 2 ran points - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Back
Top