• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

shop tera

Newbie Spellweaver
Joined
Apr 28, 2017
Messages
72
Reaction score
2
Hellohow to activate the tera game shopin the server I have GM shopcordially
 
Junior Spellweaver
Joined
Dec 5, 2015
Messages
181
Reaction score
145
When you try to open the shop from the client, you need to return the "S_SHOW_AWESOMIUMWEB_SHOP" packet with the URL of the shop
 
Upvote 0
Newbie Spellweaver
Joined
Apr 28, 2017
Messages
72
Reaction score
2
Hello
thank you for info
but I did not understand everything
a possible example please
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
Dec 5, 2015
Messages
181
Reaction score
145
:|
You can try to see on official server how it's working.
But you just need to send the url when the client ask for it
 
Upvote 0
Newbie Spellweaver
Joined
Apr 28, 2017
Messages
72
Reaction score
2
I am sorry
but I do not understand
what link ?
127.0.0.0/gmshop.xml
it will not work
official tera link
fr.tera.gameforge.com/user/setshopcharacter
 
Upvote 0
Junior Spellweaver
Joined
Dec 5, 2015
Messages
181
Reaction score
145
The link you want.
Basicly it is the link of your shop on your website.
You can even put a link to google or youtube
 
Upvote 0
Newbie Spellweaver
Joined
Jan 19, 2007
Messages
15
Reaction score
3
Here's a snippet from my server i'm working on as an example:
Code:
void Protocol::openShopWindow(std::string link) {
    Packet outPacket;
    outPacket.add<uint16_t>(S_SHOW_AWESOMIUMWEB_SHOP);
    outPacket.add<uint16_t>(6);
    outPacket.addStringLong(link);
    sendPacket(outPacket);
}

On packet recieve:
Code:
case C_SHOW_AWESOMIUMWEB_SHOP:
    openShopWindow("https://tera.milice.se/");
    break;
 
Upvote 0
Newbie Spellweaver
Joined
Jan 19, 2007
Messages
15
Reaction score
3
Well, my example is from my own project and not any publically available source (yet) so you can't jusr copy-paste it.
If you provide more information of what software you're using it's easier for anyone to help you.

Cheers
 
Upvote 0
Newbie Spellweaver
Joined
Jun 18, 2011
Messages
46
Reaction score
0
Well, my example is from my own project and not any publically available source (yet) so you can't jusr copy-paste it.
If you provide more information of what software you're using it's easier for anyone to help you.

Cheers

Tera repack teaser? :scared:
 
Upvote 0
Newbie Spellweaver
Joined
Jan 19, 2007
Messages
15
Reaction score
3
Tera repack teaser? :scared:
Well, i'm writing a server emulator in C++ that is going to be cross-platform compatible (hostable on both windows and unix systems).
It's still in very early stages and the code is messy but will most likely be publicly available when i find the time to finish it, currently using EU 80.04 client ;)
 
Upvote 0
Newbie Spellweaver
Joined
Jun 18, 2011
Messages
46
Reaction score
0
Well, i'm writing a server emulator in C++ that is going to be cross-platform compatible (hostable on both windows and unix systems).
It's still in very early stages and the code is messy but will most likely be publicly available when i find the time to finish it, currently using EU 80.04 client ;)

All the best man!! Great to hear that!!
 
Upvote 0
Back
Top