Jump to content

Sere

Members
  • Posts

    43
  • Joined

  • Last visited

Profile Information

  • Gender
    Female
  • Location
    Germany

Recent Profile Visitors

2297 profile views

Sere's Achievements

Poring

Poring (1/15)

2

Reputation

  1. Hello everybody It's me again x_x I tried to add this archievement system : http://rathena.org/board/topic/56410-achievement-system/page-3#entry74672 But I have the same problem ..to add it correctly I need to add something at MAP_H. But after some changes at rAthena it is not longer possible. So I have the question , how can I add it without MAP_H , or where do I need to add it ? Hopefully someone can help me Many thanks Greetings Sere
  2. Hello everybody I got a little question... the VIP System of rAthena is really nice but I want to try to change it a bit. I want that the Account, which allready got the VIP status, but the time elapsed, will be 'kicked' or logged out, that he loose the VIP Status. Actually I don't know how I should change it in that way. By example : VIP Status expires > A message pops up 'Your VIP Status is expired. Please log in again' (or something that way) > and you will be logged out Actually I made a fake name 'VIP' before the Char and this need to be changed too with this log off. Or does anyone have maybe an idea, that this all be can changed without logoff and just a message? Can anyone maybe help me ?
  3. Hello everybody I have a little problem. I want to change the languages at my server, but not only the buttons or the NPC's, also the itemdescription. I want to change this before the login, means before the server choose. Example : login > language : english, german , french, and so on > char select I saw it at the official server, that I can change it with different folders, but I think they changed it within the exe. They maybe hexed it in, when I choose 'french' that it will be displayed in that way. I don't want to repatch it always in different languages at the System Folder, cause everybody needs to download that much, after every update or change. Can someone maybe tell me, where I can hex it into it? And when someone knows it, what I exactly need to write and what's the max language? Would be nice if someone have any ideas. P.S : Sorry for my bad english Q_Q
  4. Thanks for your fast answer. Here is my test script: yesenia,137,135,5 script Test 60,{ if(#langtype == eng) { mes "The text is in english."; close; } if(#langtype == grm) { mes "Der Text ist auf deutsch."; close; } mes "Keiner der beiden Sprachen."; close; } The message in english works, but not this for german. Oh lol, works now. I have changed eng/grm to a number. But thanks for your help.^^ Have sending a pull request on GIT for map_msg_grm.conf. It is only translated at line 85. I will keep it updated.
  5. Hey guys, I've a question. At the first post was wrote: This setting is stored as the #langtype variable in `global_reg_value`. I can't find in global_reg_value anything with langtype. Can you help me please? I would combine #langtype with a npc like "If (#langtype == eng)". I know that it is selected by sql table, it is only an example.
  6. Many thanks for your help nndsl. But now I've a new error. T_T achievement.c:127:34: error: macro "msg_txt" requires 2 arguments, but only 1 given achievement.c: In function âachievement_achieveâ: achievement.c:127: error: âmsg_txtâ undeclared (first use in this function) achievement.c:127: error: (Each undeclared identifier is reported only once achievement.c:127: error: for each function it appears in.) achievement.c: In function âachievement_update_mobâ: achievement.c:621: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:621: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_update_mob_subâ: achievement.c:639: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:639: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_update_itemfindâ: achievement.c:652: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:652: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_update_itemuseâ: achievement.c:663: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:663: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_update_exploreâ: achievement.c:674: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:674: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_update_questâ: achievement.c:685: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:685: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â achievement.c: In function âachievement_loadDBâ: achievement.c:1328: warning: passing argument 2 of âachievementDB->foreachâ from incompatible pointer type achievement.c:1328: note: expected âDBApplyâ but argument is of type âint (*)(union DBKey, void *, struct __va_list_tag *)â make[1]: *** [obj_sql/achievement.o] Error 1 Ok, all solved.~ Works now ^^
  7. Hey, I've a problem. At my last server work the achievement perfectly, but in the latest rAthena revesion get this error: In file included from pc.h:22, from map.c:25: achievement.h:53: error: redeclaration of enumerator âAI_MAXâ map.h:317: note: previous definition of âAI_MAXâ was here I don't know what is wrong. In map.h gives AI_MAX.
  8. I try to add the <readfolder /> function. Know anyone how to add this correctly? Here is my clientinfo.xml: <clientinfo> <servicetype>france</servicetype> <servertype>primary</servertype> <extendedslot>4</extendedslot> <readfolder>english</readfolder> <connection> <display>English</display> <desc>None</desc> <address></address> <port>6900</port> <version>30</version> <langtype>1</langtype> <registrationweb></registrationweb> <aid> <admin>200000</admin> </aid> </connection> <servicetype>germany</servicetype> <servertype>primary</servertype> <extendedslot>4</extendedslot> <readfolder>german</readfolder> <connection> <display>German</display> <desc>None</desc> <address></address> <port>6900</port> <version>30</version> <langtype>1</langtype> <registrationweb></registrationweb> <aid> <admin>200000</admin> </aid> </connection> <servicetype>france</servicetype> <servertype>primary</servertype> <extendedslot>4</extendedslot> <readfolder>france</readfolder> <connection> <display>France</display> <desc>None</desc> <address></address> <port>6900</port> <version>30</version> <langtype>1</langtype> <registrationweb></registrationweb> <aid> <admin>200000</admin> </aid> </connection> fRO / euRO use this and there works without <readfolder />. fRO work with the same what i try to do. I have the same folder like fRO data/english data/german data/france data/turkish <?xml version="1.0" encoding="euc-kr" ?> 87.106.34.180 <clientinfo> <servicetype>france</servicetype> <servertype>primary</servertype> <extendedslot></extendedslot> <connection> <display>English</display> <desc>None</desc> <address>62.23.1.52</address> <port>6900</port> <version>1</version> <registrationweb>http://register.ragnarok.co.in</registrationweb> <aid> <admin>100082</admin> <admin>100083</admin> <admin>100085</admin> <admin>100087</admin> <admin>100207</admin> <admin>100363</admin> <admin>100365</admin> <admin>100491</admin> <admin>100504</admin> <admin>100973</admin> <admin>587215</admin> <admin>587213</admin> <admin>552599</admin> <admin>586313</admin> <admin>100081</admin> <admin>100089</admin> <admin>100090</admin> <admin>100084</admin> <admin>100097</admin> </aid> </connection> <connection> <display>Francais</display> <desc>None</desc> <address>62.23.1.52</address> <port>6900</port> <version>1</version> <registrationweb>http://register.ragnarok.co.in</registrationweb> <aid> <admin>100082</admin> <admin>100083</admin> <admin>100085</admin> <admin>100087</admin> <admin>100207</admin> <admin>100363</admin> <admin>100365</admin> <admin>100491</admin> <admin>100504</admin> <admin>100973</admin> <admin>587215</admin> <admin>587213</admin> <admin>552599</admin> <admin>586313</admin> <admin>100081</admin> <admin>100089</admin> <admin>100090</admin> <admin>100084</admin> <admin>100097</admin> </aid> </connection> <connection> <display>Deutsch</display> <desc>None</desc> <address>62.23.1.52</address> <port>6900</port> <version>1</version> <registrationweb>http://register.ragnarok.co.in</registrationweb> <aid> <admin>100082</admin> <admin>100083</admin> <admin>100085</admin> <admin>100087</admin> <admin>100207</admin> <admin>100363</admin> <admin>100365</admin> <admin>100491</admin> <admin>100504</admin> <admin>100973</admin> <admin>587215</admin> <admin>587213</admin> <admin>552599</admin> <admin>586313</admin> <admin>100081</admin> <admin>100089</admin> <admin>100090</admin> <admin>100084</admin> <admin>100097</admin> </aid> </connection> <connection> <display>Turkish</display> <desc>None</desc> <address>62.23.1.52</address> <port>6900</port> <version>1</version> <registrationweb>http://register.ragnarok.co.in</registrationweb> <aid> <admin>100082</admin> <admin>100083</admin> <admin>100085</admin> <admin>100087</admin> <admin>100207</admin> <admin>100363</admin> <admin>100365</admin> <admin>100491</admin> <admin>100504</admin> <admin>100973</admin> <admin>587215</admin> <admin>587213</admin> <admin>552599</admin> <admin>586313</admin> <admin>100081</admin> <admin>100089</admin> <admin>100090</admin> <admin>100084</admin> <admin>100097</admin> </aid> </connection> </clientinfo>
  9. Sere

    Town Message

    I've downloaded yet eAthena, but can't find anyone like this. Well, I've script it now by myself. I've thought it is harder...xD - script mapannounce -1,{ OnPCLoadMapEvent: getmapxy(@mapname$,@mapx,@mapy,0); if(@mapname$ == "payon") { announce "Welcome to [Payon]",bc_self,0x00F0E5,0,16; end; } end; } payon mapflag loadevent
  10. Sere

    Town Message

    Yea xD. That is my problem. hihi^^
  11. Sere

    Town Message

    Hi guys, Where can I get this script, what displayed the map which you entered.
  12. Ok, thanks for your answer. It is correct that the IShopWindow Ingame work with 2012-04-10?
  13. Hi guys, I search a stable Client with the new features like: "ItemShopWindow Ingame, new Equipment view, Monster HP bar, Partyrecruit System, etc..." I know it is "working" at 2013 Clients, but I've still error with trying to buy an Item at the Itemshop. (The purchase has failed because the NPC doesn't exist). I've test all stuff what is to find here as solution. (example: packet ver. in clif.c) Well, it would be perfect when this stuff working with Client version 2012-04-10, because there can be using the normally Ragnarok.exe and Patcher. You doesn't need Loki or R.O.L.eX_LQ. If anyone have a a solution for a stable version with the features like upper, it would be very nice if you help me. Thanks in advance. Ps: sry for my english
  14. Sere

    Flux CP registration

    It would be nice too, if all accounts from the same people order with the same email. Just like fRO.
×
×
  • Create New...