Jump to content
  • 0

In Game Registration


Jayz

Question


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

Hello im requesting in game registration account

Username = Minimum 4 Letter and Check if username is exist

Password = Minimul 4 Letter

Email = 1 Email Per Account = Your email is exist

Male or Female = check if M or F

Security Code = like 05912

Thanks

Link to comment
Share on other sites

15 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

Hello im requesting in game registration account

Username = Minimum 4 Letter and Check if username is exist

Password = Minimul 4 Letter

Email = 1 Email Per Account = Your email is exist

Male or Female = check if M or F

Security Code = like 05912

Thanks

Even though this is a Script Request... I gotta confirm. Are you talking about a SCRIPT or through your CLIENT? You would have to hex the client and even modify your source files... especially for the security code. This way -is- possible through a NPC script but it's not what you really want right?

Your best bet if you want all these features, use a Control Panel.

This part:

Username = Minimum 4 Letter and Check if username is exist (automatically does this by default)

Password = Minimum 4 Letter

is already there for you:

//If new_account is enabled, minimum length to userid and passwords should be 4?
//Must be 'Yes' unless your client uses both 'Disable 4 LetterUserID/Password' Diffs
new_acc_length_limit: yes

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

i want scirpt.. yup i know best is control panel but i want implimented in Game Registration

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

So to access this NPC in-game, they would have to login first right?

How would players create the first account to login with?

  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

probably a GM can create/manipulate account in-game ...

completely possible by hijacking SQL

but feel very lazy to write this kind of things ... need to read a lot in the source

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  666
  • Reputation:   93
  • Joined:  04/27/12
  • Last Seen:  

Well, in all likely hood, that it is created, i'm still gonna agree with Brian on this one... What real advantage does this have? Because, if your trying to limit the amount of accounts people used based off of their email address, well then I'm sorry, because unless you close account registration on your server, people will just bypass this completely.

Edited by GmOcean
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

ok..we dont have advatages of this.. i want requesting of this. example you have account ingame using registration on cp.. sometime my player have slow connection so cant create new account in my control panel and i have rwc script style per account once your account join in rwc you cant use your account thats why im asking to make a account in game to join in RWC

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  90
  • Reputation:   5
  • Joined:  06/17/12
  • Last Seen:  

You have two servers, is that correct? one is your official and the other one is a temporary server to be used for RWC?

Suggestion:

Just create a new map (Or any available RWC maps) within your main server, not an alt server.

Put Item Restriction inside the map. (or other restriction like they cant warp back from that map to get items outside, not unless they have been warped by GMs)

Or only novice can enter and modify their skills and stats inside the map.

Edited by cataclysmro
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

Here you go:

uhmm this is possible to add database setting?

Example

Database = ragnarok1 // This is Database where you want to register

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

You can't execute SQL queries on a database the server isn't connected to. o_o (edit: I guess not xD)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  106
  • Reputation:   28
  • Joined:  11/08/11
  • Last Seen:  

You can't execute SQL queries on a database the server isn't connected to. o_o

Wrong. You can use any database as long as the sql user the server logins with has proper permissions.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

uhmm this is possible to add database setting?

Example

Database = ragnarok1 // This is Database where you want to register

I didn't add database configs because query_sql uses the current (same) SQL connection as the map-server.

As Toshiro said, you can execute SQL queries on any database on the same MySQL Server instance as long as the rAthena SQL user has privileges on that database.

Just add the database name in front of the table name: ragnarok1.login

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

uhmm like this

ragnarok1.login.query_sql("SELECT account_id FROM login WHERE userid='"+escape_sql(.@userid$)+"'", .@account_id) > 0)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  106
  • Reputation:   28
  • Joined:  11/08/11
  • Last Seen:  

uhmm like this

ragnarok1.login.query_sql("SELECT account_id FROM login WHERE userid='"+escape_sql(.@userid$)+"'", .@account_id) > 0)

query_sql("SELECT account_id FROM ragnarok1.login WHERE userid='"+escape_sql(.@userid$)+"'", .@account_id) > 0)

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  59
  • Topics Per Day:  0.01
  • Content Count:  396
  • Reputation:   53
  • Joined:  07/24/12
  • Last Seen:  

oh ok thanks ill try

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...