Jump to content

nuna

Members
  • Content Count

    136
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    nuna got a reaction from Naruto in How to add quest delay? or NPC talk delay per character   
    Example I want to get item to one npc and it will require 1 hr again to get or talk to him. (Timer will count even you log out)
    Thanks!!
  2. Upvote
    nuna got a reaction from Dastgir in Willing to pay for this agit defender script   
    Does anyone has the script for the longest agit defender? wherein every second of defending the agit counts.
    Here's the criteria of what i'm looking for:
     
    - An npc in which shows the Top 10 Longest Agit Defender
     
    the npc will show somehow like this:
     
    [Top 10 Longest Agit Defender] Top 1: Ganja Guild : 10 minutes 14 seconds // top 1: <guild name> : <defending time> Top 2: Ganja2 Guild : 8 minutes 10 seconds // top 2: <guild name> : <defending time> //and so on. . . . //not a matter of points, but a matter of time on how long does the guild defend their castle  
    - after clicking 'next' it will also show the Longest Agit Defender of the Day which resets after woe
     
    [ Longest Agit Defender of the Day ] September 24, 2015 - Kriemhild //<date of defend> - <defended castle name> - Ganja Guild - 10 minutes 12 seconds // //- <guild name> : <defending time>  
     
    Credits to: https://rathena.org/board/topic/103232-request-longest-agit-defender-script/
     
    Message me asap and lets talk
  3. Upvote
    nuna reacted to meko in Hello may i request if you warp on payon then you go back to your savepoint   
    add this mapflag: loadevent
     
    then do something like:
    OnPCLoadMapEvent: if (strcharinfo(PC_MAP) == "moc_fild22" && !@auth_moc_fild22) { warp("SavePoint", 0, 0); // player is not authorized to be on moc_fild22 } end;  
    and in the npc that warps the player to that map you'd just set @auth_moc_fild22 to true and warp to moc_fild22
  4. Upvote
    nuna reacted to meko in Can some one convert this script to hercules   
    .@count = query_sql("SELECT c.name, r.value AS points "
    "FROM `char_reg_num_db` r "
    "JOIN `char` c ON r.char_id = c.char_id "
    "WHERE `key`='brokeemp' AND `index`='0' "
    "ORDER BY `value` DESC "
    "LIMIT 10;",
    .@char$[0], .@points[0]);
     
    for (.@i = 0; .@i < .@count; .@i++) {
    mes(sprintf("%d. %s — %d points.", .@i + 1, .@char$[.@i], .@points[.@i]));
    }
     

  5. Upvote
    nuna reacted to malufett in How to prevent group 0 to not login?   
    login-server.conf
    // Required account group id to connect to server.// -1: disabled// 0 or more: group idgroup_id_to_connect: -1// Minimum account group id required to connect to server.// Will not function if group_id_to_connect config is enabled.// -1: disabled// 0 or more: group idmin_group_id_to_connect: -1 
  6. Upvote
    nuna reacted to Angelmelody in Hello help me on automatic prize giver for KoE   
    try this
     
    //////THISSSSSS ONEgetguildmember(getcastledata("guild_vs1", 1),2);for(.@i=0;.@i< $@guildmembercount;.@i++) getitem 30206,1,$@guildmemberaid[.@i];//////THISSSSSS ONE
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.