achievement system

02/24/2013 13:53 anawbas#1
any idea for how to make the achievements saved :D
02/24/2013 13:56 go for it#2
guess where stuff should be saved ?
yes good boy , in the database
so where to save them in the database ?
yes good boy in new table with entity id
or in the entity table
you read them on event and if it's first time then you send effect , increase points for the rest of packets and update the database

how the study points are saved ? search the client for the entity subclass study points and see how it's saved , copy past and you are good to go
02/24/2013 14:15 anawbas#3
Quote:
Originally Posted by go for it View Post
guess where stuff should be saved ?
yes good boy , in the database
so where to save them in the database ?
yes good boy in new table with entity id
or in the entity table
you read them on event and if it's first time then you send effect , increase points for the rest of packets and update the database

how the study points are saved ? search the client for the entity subclass study points and see how it's saved , copy past and you are good to go
thxx but there is about 259 acievement
so i should make abou 259 place in table to save them
02/24/2013 14:51 shadowman123#4
Quote:
Originally Posted by anawbas View Post
thxx but there is about 259 acievement
so i should make abou 259 place in table to save them
No.. you should make Table and insert New Row containing EntityUID and AcheivmentID for each new Acheived Acheviment .. its Simple
02/24/2013 15:32 teroareboss1#5
[Only registered and activated users can see links. Click Here To Register...]

Tostring// for save
Load(strin data) for load;


for save.. update entitytabel ...'achievement', tostring();
for load... read.. entitytabel..'achievement',Load(you value read)
02/24/2013 15:33 anawbas#6
Quote:
Originally Posted by shadowman123 View Post
No.. you should make Table and insert New Row containing EntityUID and AcheivmentID for each new Acheived Acheviment .. its Simple
thx all i did it