Servine wrote:
maxskywalker wrote:
Servine wrote:
DO NOT edit!... I'm not. But didn't you say that a) you're not working on it anymore and b) I could add party functionality?
a) Oh, well I am now. Im recoding EVERYTHING.
b) You can add it after I finish the battle script.
Alright.
Offline
Servine wrote:
meew0 wrote:
Oh, you made your own RPG? Cool!
Ikr? Before, when you made that pokemon game for me, I didnt even know how to code that well XD.
How did you learn it?
And what exactly is that "Membership" thing?
Offline
meew0 wrote:
Servine wrote:
meew0 wrote:
Oh, you made your own RPG? Cool!
Ikr? Before, when you made that pokemon game for me, I didnt even know how to code that well XD.
How did you learn it?
And what exactly is that "Membership" thing?
It is access to extra features (I believe it is mainly extra color schemes atm). You have to pay for it (IDR how much, or even if the payment mechanism is in place), or if you are lucky enough to get a code from one of the devs/admns.
Offline
fire219 wrote:
meew0 wrote:
Servine wrote:
Ikr? Before, when you made that pokemon game for me, I didnt even know how to code that well XD.How did you learn it?
And what exactly is that "Membership" thing?It is access to extra features (I believe it is mainly extra color schemes atm). You have to pay for it (IDR how much, or even if the payment mechanism is in place), or if you are lucky enough to get a code from one of the devs/admns.
When the game starts, membership will have SO many more uses.
@meew0 - I started off looking at 'thenewboston's video tutorials on youtube after looking at his mysql tutorials. I then got started with Icarea (the predecessor of BlueTetra) but it derailed after I accidentally kinda messed it up?
You wanna help?
Offline
Servine wrote:
fire219 wrote:
meew0 wrote:
How did you learn it?
And what exactly is that "Membership" thing?It is access to extra features (I believe it is mainly extra color schemes atm). You have to pay for it (IDR how much, or even if the payment mechanism is in place), or if you are lucky enough to get a code from one of the devs/admns.
When the game starts, membership will have SO many more uses.
@meew0 - I started off looking at 'thenewboston's video tutorials on youtube after looking at his mysql tutorials. I then got started with Icarea (the predecessor of BlueTetra) but it derailed after I accidentally kinda messed it up?
You wanna help?
Of course!
Offline
meew0 wrote:
Servine wrote:
fire219 wrote:
It is access to extra features (I believe it is mainly extra color schemes atm). You have to pay for it (IDR how much, or even if the payment mechanism is in place), or if you are lucky enough to get a code from one of the devs/admns.When the game starts, membership will have SO many more uses.
@meew0 - I started off looking at 'thenewboston's video tutorials on youtube after looking at his mysql tutorials. I then got started with Icarea (the predecessor of BlueTetra) but it derailed after I accidentally kinda messed it up?
You wanna help?Of course!
I think I have your email, so I'll just email you the details tomorrow.
I'm going for a fluid metro look now!
Offline
I joined, but I have a question.
What is a membership, what does it benefit, and how does one get one?
Offline
ProgrammingPro01 wrote:
I joined, but I have a question.
What is a membership, what does it benefit, and how does one get one?
A membership is something that benefits your gameplay and gives you perks.
It benefits in styling, buying, weapons, battles, profiles, rank and many other things soon to be intergrated!
So far, only admins can distribute them. We might be adding paypal, or we might be doing something else...
Offline
It's great!
Offline
Servine, tetra doesn't look good with metro. That blue burns my eyes.
But looks good other than that!
BTW what do you think of my new site: http://flaxbeard.site90.net/
Don't sign up quite yet as it's still not functioning quite correct as you can't log in. Serv, how do you use sessions and log in? I got the database part down, but I don't know how the heck you make a session variable that works.
Offline
SeptimusHeap wrote:
Servine, tetra doesn't look good with metro. That blue burns my eyes.
But looks good other than that!
BTW what do you think of my new site: http://flaxbeard.site90.net/
Don't sign up quite yet as it's still not functioning quite correct as you can't log in. Serv, how do you use sessions and log in? I got the database part down, but I don't know how the heck you make a session variable that works.
Nice, I'll get back to you on session variables tomorrow!
Offline
i can haz member code?
Offline
SeptimusHeap wrote:
Session vars?
Ah yes.
Basically, we start with a basic page:
<html> <head> <title>Basic Page</title> </head> <body> Hello There </body> </html>
Now, let's say we wanted to MAKE a session variable, the code would become:
<?php session_start(); ?> <html> <head> <title>Basic Page</title> </head> <body> Hello There <?php $_SESSION["name"] = "Servine"; ?> </body> </html>
Now let's say you wanted the page to print my name:
<?php session_start(); ?> <html> <head> <title>Basic Page</title> </head> <body> Hello There <?php ECHO $_SESSION["name"]; ?> </body> </html>
Offline
Servine wrote:
meew0 wrote:
Servine wrote:
When the game starts, membership will have SO many more uses.
@meew0 - I started off looking at 'thenewboston's video tutorials on youtube after looking at his mysql tutorials. I then got started with Icarea (the predecessor of BlueTetra) but it derailed after I accidentally kinda messed it up?
You wanna help?Of course!
I think I have your email, so I'll just email you the details tomorrow.
Are you ever going to do this?
Last edited by meew0 (2012-09-27 13:13:56)
Offline