Jump to content

Bahmut

Members
  • Posts

    382
  • Joined

  • Last visited

Everything posted by Bahmut

  1. Why do you post twice and I think this already got asked some times. Just search for it. I don't know how near 3ceam is to eAthena but this might help you, too. http://rathena.org/board/topic/53253-how-to-relocate-to-the-sourceforge-svn/
  2. I'm not speaking about your server. I'm speaking about your client.
  3. @Loke Have you read the description? I haven't used this script yet but it says there already is a ranking system in this script:
  4. What exactly are you requesting? For a vote for points system in your control panel go here: http://rathena.org/board/topic/64099-ceres-cp-addon-show-vote-points/ or http://rathena.org/board/topic/60640-fluxcp-addon-vote-for-points/
  5. It's working fine. What client date are you using? Have you already tried this basic client: http://rathena.org/board/topic/54190-release-basic-rathena-client/
  6. Bahmut

    Attach Party

    I don't think there is a way to attach a hole party to a script. I think you have to attach every single player and do your commands and then detach the old one and attach a new one. From doc/script_commands.txt: *attachrid(<account ID>) *detachrid; These commands allow the manipulation of the script's currently attached player. While attachrid allows attaching of a different player by using it's account id for the parameter rid, detachrid makes the following commands run, as if the script was never invoked by a player. In case, that the player cannot be attached, such as, when the player went offline in the mean time, attachrid returns 0, otherwise 1. and: *getcharid(<type>{,"<character name>"}) This function will return a unique ID number of the invoking character, or, if a character name is specified, of that character. Type is the kind of associated ID number required: 0 - Character ID number. 1 - Party ID number. 2 - Guild ID number. 3 - Account ID number. 4 - Battle ground ID also this: *getpartymember <party id>{,<type>}; Thank you to HappyDenn for all this information. This command will find all members of a specified party and returns their names (or character id or account id depending on the value of "type") into an array of temporary global variables. There's actually quite a few commands like this which will fill a special variable with data upon execution and not do anything else. Upon executing this, $@partymembername$[] is a global temporary string array which contains all the names of these party members (only set when type is 0 or not specified) $@partymembercid[] is a global temporary number array which contains the character id of these party members. (only set when type is 1) $@partymemberaid[] is a global temporary number array which contains the account id of these party members. (only set when type is 2) $@partymembercount is the number of party members that were found. The party members will (apparently) be found regardless of whether they are online or offline. Note that the names come in no particular order. Be sure to use $@partymembercount to go through this array, and not 'getarraysize', because it is not cleared between runs of 'getpartymember'. If someone with 7 party members invokes this script, the array would have 7 elements. But if another person calls up the NPC, and he has a party of 5, the server will not clear the array for you, overwriting the values instead. So in addition to returning the 5 member names, the 6th and 7th elements from the last call remain, and you will get 5+2 members, of which the last 2 don't belong to the new guy's party. $@partymembercount will always contain the correct number, (5) unlike 'getarraysize()' which will return 7 in this case.
  7. You should use lub files for your client date: http://svn6.assembla.com/svn/ClientSide/Lua_Project/lubs/Lub%20Files%205.0.2/
  8. Bahmut

    src

    If you want to change the max cart weight. Go to player.conf: // Max weight carts can hold. max_cart_weight: 8000 @Docubo You were faster
  9. Maybe they are just not translated.
  10. 2181
  11. Bahmut

    src

    http://rathena.org/board/topic/62238-manage-skill-damage-11/ What do you mean?
  12. Have you recompiled your server? If not here is a guide: http://rathena.org/wiki/Compiling
  13. I don't know what you mean with Alberta Quests but for the Port Malaya Quests there is no release yet. They are not coded, so you have to wait for a developer coding and releasing them. They already got requested, too: http://rathena.org/b...age__hl__malaya
  14. use this: getgroupid() to get the group id and this: getgmlevel() to get the level set in group.conf for the related group id. Example: group.conf id: 1 name: "Super Player" inherit: ( "Player" ) /* can do everything Players can and more */ level: 0 getgmlevel() Will return: 0 getgroupid() Will return: 1
  15. see this topic: Donations online!
  16. yes
  17. Why don't you just remove the rdata.grf? It's not needed anymore, because mainly everything in there is already in the data.grf.
  18. Here: announce "[ " + .@name$ + " ] is now the new Guild Master of guild [ " + GetGuildName(getcharid(2)) + " ]",bc_all,0xB23AEE;
  19. http://rathena.org/board/topic/61625-solved-izlude-map-bug-from-rsu-kro-rag-liteexe-rsu-kro-renewal-liteexe/page__hl__izlude and http://rathena.org/board/topic/63736-old-izlude-and-alberta/page__hl__izlude
  20. Change it to: announce "[ " + .@name$ + " ] is now the new Guild Master of guild [ " + GetGuildName(getcharid(2)) + " ]",bc_blue|bc_all;
  21. http://rathena.org/wiki/Compiling
  22. I think it's hardcoded.
  23. Could you please write a description of the script you are requesting? I don't know what you want.
  24. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/atcommands.txt
  25. Bahmut

    Cant walk

    http://www.youtube.com/watch?feature=player_embedded&v=GwlvcoNQ1rM
×
×
  • Create New...