Jump to content

orange

Members
  • Posts

    175
  • Joined

  • Last visited

Posts posted by orange

  1. hello guys

    well all of us know we have agit flags in the respective cities

    can we make them clickable so that the player who clicks on them gets a message saying " do u want toteleport to this castle" and if we select yes then we get tped outside that castle

  2. well, as we know woe has an emperium which has tobe broke nto capture the castle. the emp has a hp of 68430 and its angel property .

    can we implement the bg type emp where in crystal / food storage hp is 1000 or so and all job classes with any stats hit only 1 dmg on it?

  3. Finally Bluesky is OWNED.. ive experience a 1 yr of loss to this host also.. ive known the support.. which scammed me of USD.. which he does not pay back..

    same here... they promised me 24-48hr setup and gave me vps only after a week. their website showed they are official resellers of eamod so i purchased from them only to know later that they have been black listed.

    i filed a dispute case in paypal but unfortunately my dispute was rejected.

  4. Hello fellow rathena members,

    i am here only to warn all of you not to purchase any kind of services from blue sky vps hosting.

    they are nothing but cheaters. they do not provide anything that they promise. they promised me a 12-24hr setup but i got the access to the vps only after a week. they promised me support n al but never got anything.

    they are unofficially selling eamod and harmony too.

    so please be careful.

  5. hello guys i found this script on rathena forums. i tried using it but its not working. can some please let me know what is the mistake in this script?

    /*==========================================
    * @guildmsg
    * Send a message to your guild being the guild master [Rokimoki]
    *------------------------------------------*/
    int atcommand_guildmsg(const int fd, struct map_session_data* sd, const char* command, const char* message) {
    struct guild *g;
    nullpo_retr(-1, sd);
    g = guild_search(sd->status.guild_id);
    if (sd->status.guild_id == 0 || g == NULL) {
    clif_displaymessage(fd, "You have to belong a guild to use @guildmsg.");
    } else if (strcmp(g->master,sd->status.name)) {
    clif_displaymessage(fd, "You must be a Guild Master to use @guildmsg.");
    } else if (!message || !*message) {
    clif_displaymessage(fd, "You have to send a message. @guildmsg <Message>");
    } else {
    sprintf(atcmd_output, "[Guild Master] %s : %s", sd->status.name, message);
    //clif_broadcast(&sd->bl, atcmd_output, strlen(atcmd_output) + 1, 0, GUILD);
    clif_broadcast2(&sd->bl, atcmd_output, strlen(atcmd_output) + 1, 0xFF66FF, 0x190, 12, 0, 0, GUILD);
    //clif_displaymessage(fd, "Message Sent to Guild Members.");
    return 0;
    } // End if
    return -1;
    } // End atcommand
    

×
×
  • Create New...