Issue information

Issue ID
#8715
Status
Needs more Info
Severity
None
Started
kyeme
Jun 2, 2015 13:16
Last Post
Beret
Jan 18, 2016 0:24
Confirmation
Yes (1)
No (1)

kyeme - Jun 2, 2015 13:16

On Hercules, the variable of Cash Points is #CASHPOINTS I think that the Cash Points of official server is stored in 'login-server' and it should be ##CASHPOINTS.

Because in official, the Rok Points (pRO Cash Points) can be use on the whole server of Character(s) that alone the login-server.
Please confirm thank you.

Ancyker - Jun 2, 2015 13:34

##vars are buggy, char server doesn't retain them last I checked (it will discard them if login server is offline).

Disclaimer: I have not checked in some time.

Haru - Jun 2, 2015 13:54

Strongly against using a ##variable regardless of Aegis behaviors, since login servers are often shared between production and test servers.

It's the same reason why our bank implementation isn't at the login server level either.

This post has been edited by Haru on Jun 2, 2015 13:55

kyeme - Jun 2, 2015 15:29

Ohh okay. I dont know if the 'login-server' I said was correct. What I mean is that the CASHPOINTS should be stored in `login` tables.

Like this: `birthdate` `character_slots` `pincode` `pincode_change` `cashpoints`

Is this possible and safe? Thank you.

Haru - Jun 2, 2015 15:33

Not safe at all (the login table is handled by the login server, and shared between all character servers that use the same login server).

How about the account_data table (where the bank is stored)? That would be possible.

Frost - Sep 20, 2015 6:37

Bump

guihleao - Jan 10, 2016 17:02

Bump

guihleao - Jan 10, 2016 17:02

Bump

Beret - Jan 18, 2016 0:24

[color=rgb(68,68,68)][font='Segoe UI']In[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']aegis[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']works differently[/font][/color][color=rgb(68,68,68)][font='Segoe UI'],[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']there is[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']a DB[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']to store the values[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']of[/font][/color][color=rgb(68,68,68)][font='Segoe UI'] [/font][/color][color=rgb(68,68,68)][font='Segoe UI']Cash.[/font][/color]
[code=:0] CREATE TABLE [dbo].[Cash]( [AID] [int] NOT NULL, [Cash] [int] NOT NULL, PRIMARY KEY CLUSTERED [/code]