Daily Login System Source 

Joined
Oct 2, 2010
Messages
1,753
Reaction score
539
The source code were transferred to Asura Source Leaked here, didn't test it, but basically everything is right here

If there are missing let me know, I'll try to respond here as long as I have the time, this is the first version of Daily Login System I created

If you find the source code a mess, feel free to improve it

Also wanted to greet -Jumong- and dmk14

I'll also release the Battle Pass, I'm just looking for some time to transfer it

Source Code:
To view the content, you need to sign In or register.

Screenshot:
DailyLogin - Daily Login System - RaGEZONE Forums



bug fixes:
missing gui in cfg

<CONTROL Local="Common" Id="ITEM_IMAGE_UPGRADE">
<WINDOW_POS X="3" Y="21" W="30" H="15" />
</CONTROL>
<CONTROL Local="Common" Id="ITEM_IMAGE_CHECK">
<WINDOW_POS X="7" Y="10" W="21" H="16" />
<TEXTURE SizeX="256" SizeY="128">gui_attend_record.dds</TEXTURE>
<TEXTURE_POS X="132" Y="89" W="47" H="36" />
</CONTROL>
<CONTROL Local="Common" Id="ITEM_IMAGE_FIND">
<WINDOW_POS X="3" Y="3" W="12" H="12" />
<TEXTURE SizeX="512" SizeY="128">gui_combination.dds</TEXTURE>
<TEXTURE_POS X="187" Y="105" W="12" H="12" />
</CONTROL>

database:
Add this column in ChaInfo
ChaDailyLogin, image, NULL
ChaDailyLoginStreak, int / bigint, NOT NULL, default value 0
 
Last edited:


keyword:

C++:
/*12-16-24, daily login - CNDev*/
 
Last edited:
Thank you sir, cant wait for the battle pass <3
 
a lot of missing of code. but i'll try to fix :)
 
missing gui
ITEM_IMAGE_UPGRADE not found
ITEM_IMAGE_CHECK not found
ITEM_IMAGE_FIND not found
 
missing gui
ITEM_IMAGE_UPGRADE not found
ITEM_IMAGE_CHECK not found
ITEM_IMAGE_FIND not found
missing gui

Code:
    <CONTROL Local="Common" Id="ITEM_IMAGE_UPGRADE">
        <WINDOW_POS X="3" Y="21" W="30" H="15" />
    </CONTROL>
    <CONTROL Local="Common" Id="ITEM_IMAGE_CHECK">
        <WINDOW_POS X="7" Y="10" W="21" H="16" />
        <TEXTURE SizeX="256" SizeY="128">gui_attend_record.dds</TEXTURE>
        <TEXTURE_POS X="132" Y="89" W="47" H="36" />
    </CONTROL>

    <CONTROL Local="Common" Id="ITEM_IMAGE_FIND">
        <WINDOW_POS X="3" Y="3" W="12" H="12" />
        <TEXTURE SizeX="512" SizeY="128">gui_combination.dds</TEXTURE>
        <TEXTURE_POS X="187" Y="105" W="12" H="12" />
    </CONTROL>
 
Back