Jump to content

iCORE

Members
  • Content Count

    393
  • Joined

  • Last visited

  • Days Won

    5

Reputation Activity

  1. Upvote
    iCORE reacted to ossi0110 in 2014-10-22 Client Download   
    Just a Small note ,  i figured out the Problem with the Equip window while checking the EQ of other players, it will be fixed in the next days.
     
    Also i will release a new Full client for a Recent 2015 Client
     
    and when all its done the 2015-10-01 Client will be released too with the New Dorma race
  2. Upvote
    iCORE reacted to ossi0110 in New Race   
    dont worry the progress is getting well
     

     
  3. Upvote
    iCORE got a reaction from minx123 in item 12622 not funtion   
    { Id: 12622 AegisName: "Boarding_Halter" Name: "Halter Lead" Type: 11 Buy: 20 Upper: 63 Script: <" setmounting(); ">}, put it on your ./db/item_db2.conf and use @reloaditemdb in game
  4. Upvote
    iCORE got a reaction from Lord Ganja in FluxCP Vote for Points?   
    Private message me i will try to fix it for you
  5. Upvote
    iCORE got a reaction from tmav94 in Thor Patcher wont update   
    start from
    100 yourthor.thor101 yourthor1.thor102 yourthor2.thor103 yourthor3.thor105 yourthor4.thorand so on....
  6. Upvote
    iCORE got a reaction from Lord Ganja in FluxCP Vote for Points?   
    http://herc.ws/board/topic/10762-re-release-paradox-vote-for-points/
     
    hope this will help
  7. Upvote
    iCORE reacted to Gerz in [help] sp healing script   
    :v +rep to me?bAddItemSpRate.diff
     
     
  8. Upvote
    iCORE reacted to Dastgir in Plugin Collections   
    Update:
     All Plugins Updated to reflect recent changes
     
    @
     
    Edit:
    Travis Report has been added to repo, so that I would get to know of crash upon runtime(or compile warnings/errors)
  9. Upvote
    iCORE reacted to Dastgir in Plugin Collections   
    Yes, HPM recently got update, I need to update all plugins to reflect those changes.If you are in hurry,
    Removing all GET_SYMBOL lines will fix it.
  10. Upvote
    iCORE reacted to Alayne in [Request] Automatic Class Changer   
    Oh yeah, forgot about it yesterday. Give me a moment and I'll send you the script.


    prontera,19,22,5 script Devil Square Guardian 852,{ close; OnPCLoginEvent: set .@npcname$,"[JobChanger]"; if (BaseLevel == 1 && JobLevel == 1 && Class == Job_Novice && JOBCHANGEOFFERED == 0) { mes .@npcname$; mes "Hello to you " + strcharinfo(0); mes "I can change your job for any class you want."; mes "Interested?"; if(select("Yes","No") == 1) { next; mes .@npcname$; mes "Perfect, choose a job then."; switch(select("Lord Knight","Paladin","High Wizard","Professor","Champion","High Priest","Sniper","Clown/Gipsy","Whitesmith","Creator","Assassin Cross","Stalker")) { case 1: jobchange Job_Lord_Knight; break; case 2: jobchange Job_Paladin; break; case 3: jobchange Job_High_Wizard; break; case 4: jobchange Job_Professor; break; case 5: jobchange Job_Champion; break; case 6: jobchange Job_High_Priest; break; case 7: jobchange Job_Sniper; break; case 8: if(Sex == 1) { //clown jobchange Job_Clown; } else { //gipsy jobchange Job_Gipsy; } break; case 9: jobchange Job_Whitesmith; break; case 10: jobchange Job_Creator; break; case 11: jobchange Job_Assassin_Cross; break; case 12: jobchange Job_Stalker; break; } atcommand("@blvl " + (.baseLevel - 1)); atcommand("@jlvl " + (.jobLevel - 1)); set JOBCHANGEOFFERED, 1; } else { mes "Your choice."; set JOBCHANGEOFFERED, 1; } } close; OnInit: set .baseLevel, 99; set .jobLevel, 70; end;} Here you are. Offers one time a player Novice 1/1 on login to be changed to a trans class lvl 99/70.
    Be careful, it won't manage the skill points lots from non using the regular. A player will get 70 points, not 50 + 70 => 120 from a normal exp path.
  11. Upvote
    iCORE reacted to Litro in [Request] Level Config For Damage, Skill & Status Calc (3Ceam Conf)   
    Hello, Can some one help me ? i have modified my battle.c, skill,c and status,c it was heavily edited for it, but when i update it yesterday all my work in battle.c was crumbled, yes it was my stupidity by i still have the backup file, here i want to ask help for make it into plugin, i think it was good for private server, for more information i have gathered data from 3ceam
     
    http://3ceam.googlecode.com/svn/trunk/rewrite/conf/battle/skill.conf
    // Set this to the max base level that you would like skills to add extra bonus damage from. // [Pinky] // NOTE: Default level is 150, if you set this to a higher level then you will experience higher/overload damage from many 3rd class skills.// NOTE2: If you set this to a lower level then 100 all skills will suffer penalties higer than 100%, causing damages below the minimun damage.max_highlvl_nerf: 150// Set this to the max job level that you would like 3rd class skills to add extra bonus damage from. // [Pinky] // NOTE: Default 3rd class job_level is 50 (official servers), if you set this to a higher level depending on your server's 3rd classes max job level, then you might experience higher/overload damage/effects from 3rd class skills.// This setting only effects 3rd class skills that uses job level as a bonus multiplicator.// 0 = disabledmax_joblvl_nerf: 50 and this code i have used for my own, taken from 3ceam by @Rytech
    blvl_nerf = status->get_lv(src); if( sd && ((skill_id >= RK_ENCHANTBLADE && skill_id <= LG_OVERBRAND_PLUSATK) || (skill_id >= RL_GLITTERING_GREED && skill_id <= OB_AKAITSUKI)) && battle_config.max_blvl_nerf && blvl_nerf > battle_config.max_blvl_nerf ) blvl_nerf = battle_config.max_blvl_nerf; t_blvl_nerf = status->get_lv(target); if( sd && ((skill_id >= RK_ENCHANTBLADE && skill_id <= LG_OVERBRAND_PLUSATK) || (skill_id >= RL_GLITTERING_GREED && skill_id <= OB_AKAITSUKI)) && battle_config.max_blvl_nerf && t_blvl_nerf > battle_config.max_blvl_nerf ) t_blvl_nerf = battle_config.max_blvl_nerf; if( sd && ((skill_id >= RK_ENCHANTBLADE && skill_id <= LG_OVERBRAND_PLUSATK) || (skill_id >= RL_GLITTERING_GREED && skill_id <= OB_AKAITSUKI)) && battle_config.max_jlvl_nerf ) jlvl_nerf = min(sd->status.job_level,battle_config.max_jlvl_nerf); else if( sd ) jlvl_nerf = sd->status.job_level; Litro
  12. Upvote
    iCORE reacted to mleo1 in [help] Devotion Skill   
    .configclassesgeneral.h 


    uncomment 
    //#define DEVOTION_REFLECT_DAMAGE
  13. Upvote
    iCORE got a reaction from Kusoo in [Re-Release] Updated Extended Vending System   
    hi guys i just want to share this updated EVS by lilith since any in here is busy improving it, no changes at all its just a patch, and it will not support @autotrade. i dont know if this will support cash and zeny as item so if any one had an idea to make it work with cash and zeny just improve it thanks.
     
    Step1: Apply the patch
    Step2: Put item_vending.txt in your (trunk/db) folder
    Step3: Compile your Server


    NOTE: this patch dont read the custom.conf so dont ask for it
     
    * UPDATE
    v2
    Working on the latest rev.
     
     
     
     
    CREDITS TO THE REAL OWNER.
    lilith
    Extended Vending System.patch
    item_vending.txt
    Extended Vending System v2.patch
  14. Upvote
    iCORE reacted to Garr in [Help] Cashpoints.php   
    Replace all
    .global_reg_value with one of the following:
    .acc_reg_num_db - account wide points, you probably want this.global_acc_reg_num_db - also account wide, but across all map/char servers if there are many Also, replace
    WHERE `str` with
    WHERE `key`  
    I think that should do it.
     
    ETA:
    For the last, where setting points first time
    if (!$this->cashRecords[$accountID]) { $sql = "INSERT INTO {$this->server->charMapDatabase}.global_reg_value "; $sql .= "(`str`, value, type, account_id, char_id) "; $sql .= "VALUES (?, 0, 2, ?, 0)"; $sth = $this->server->connection->getStatement($sql); $sth->execute(array($this->pointsType, $accountID)); } replace it with
    if (!$this->cashRecords[$accountID]) { $sql = "INSERT INTO {$this->server->charMapDatabase}.acc_reg_num_db "; $sql .= "(`key`, `value`, `account_id`) "; $sql .= "VALUES (?, 0, ?)"; $sth = $this->server->connection->getStatement($sql); $sth->execute(array($this->pointsType, $accountID)); }
  15. Upvote
    iCORE got a reaction from Alphoccio in Need help. Getting Started   
    for the client you can visit Here
    * i recommend that you use full 20131223 by oissis
    -LINK
     
    for the full data folder visit Here
    * it includes clientinfo,xml
     
     
    just post your problem and we'll try to solve it
  16. Upvote
    iCORE reacted to PonyVPS in Seriously, where do you host your server?   
    I just want to say this is not true... the problem you FACED is you report on my SKYPE IDwhich is being used for advertisement.. if you want to contact us.. why dont use our ticket system? i never see tickets from you..
    i only see chat from skype @ advertisement account..
     
    for future usage of any hosting sir.. please report problems via ticket
    not on facebook/skype.. i have my developer's waiting for some reports
    i cant run a company without help.. so that one man team accusation is not really true
     
    have a good day
  17. Upvote
    iCORE reacted to Mystery in [FREE SETUP] RAGNAROK VPS/Server Hosting with DDOS PROTECTION   
    You are making a point-blunt attack without providing enough evidence to support your case. This can then mean that people will take your review with a grain of salt.
     
     
    If you have any disruptions about the service, please make a private message between the topic owner and yourself. Resolve any disputes amongst yourselves before coming out with a inaccurate review (especially without proper evidence to support your case).
  18. Upvote
    iCORE got a reaction from Jezu in [Re-Release] Updated Extended Vending System   
    * UPDATE
    v2
    Working on the latest rev.
  19. Upvote
    iCORE got a reaction from JulioCF in Greatings!   
    HAPPY NEW YEAR HERCULES COMMUNITY! HAVE A GREAT DAY AND HAPPY DEVELOPING TO ALL OF YOU
  20. Upvote
    iCORE got a reaction from Tsuuu in [re-release] Mellina   
    MELLINA MAP
     
    orriginal thread:http://rathena.org/board/
    CLICK THE LINK TO SEE MAP SCREENSHOT's
     
    Includes all
    gat
    extra
    rsw
    gnd
    mini map
     
    ENJOY!


    CREDITS TO THE OWNER!
    Mellina.rar
  21. Upvote
    iCORE got a reaction from Jezu in [Re-Release] Updated Extended Vending System   
    hi guys i just want to share this updated EVS by lilith since any in here is busy improving it, no changes at all its just a patch, and it will not support @autotrade. i dont know if this will support cash and zeny as item so if any one had an idea to make it work with cash and zeny just improve it thanks.
     
    Step1: Apply the patch
    Step2: Put item_vending.txt in your (trunk/db) folder
    Step3: Compile your Server


    NOTE: this patch dont read the custom.conf so dont ask for it
     
    * UPDATE
    v2
    Working on the latest rev.
     
     
     
     
    CREDITS TO THE REAL OWNER.
    lilith
    Extended Vending System.patch
    item_vending.txt
    Extended Vending System v2.patch
  22. Upvote
    iCORE got a reaction from JulioCF in Algumas dúvidas   
    1 la diferencia entre rathena y Hércules es Que Hércules puede soportar plugins (véase el hilo fuente para obtener más información acerca de los plugins). 2 ¿qué quieres decir por traducir? 3 eu prefiro o visual studio 10 4 He intentado tanto Ceres y el flujo y Ambos están trabajando y yo prefiero que esté al usuario Hércules Flux 5 Sobre todo si usted pide anfitrión le dará una Ellos cliente   Espero que estén acumulación Ayudar Florerias su servidor de la buena suerte!
  23. Upvote
    iCORE got a reaction from JulioCF in Problema de conexão (Hamachi)   
    char-server
     
    // Login Server IP
    // The character server connects to the login server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. login_ip: Hamachi-IP ( IPv4 )   // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. char_ip: Hamachi-IP ( IPv4 )  
     
    map-server
     
    // Character Server IP
    // The map server connects to the character server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. char_ip: Hamachi-IP ( IPv4 )   // Map Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. map_ip: Hamachi-IP ( IPv4 )     subnet   subnet: 255.0.0.0:Hamachi-IP ( IPv4 ):Hamachi-IP ( IPv4 )   =============================================================   certificar-se de que eles estão conectados à sua rede hamachi. and change you clientinfo.xml to your Hamachi-IP ( IPv4 )
  24. Upvote
    iCORE got a reaction from glemor123 in [re-release] Mellina   
    MELLINA MAP
     
    orriginal thread:http://rathena.org/board/
    CLICK THE LINK TO SEE MAP SCREENSHOT's
     
    Includes all
    gat
    extra
    rsw
    gnd
    mini map
     
    ENJOY!


    CREDITS TO THE OWNER!
    Mellina.rar
  25. Upvote
    iCORE got a reaction from Yuki in [re-release] Mellina   
    MELLINA MAP
     
    orriginal thread:http://rathena.org/board/
    CLICK THE LINK TO SEE MAP SCREENSHOT's
     
    Includes all
    gat
    extra
    rsw
    gnd
    mini map
     
    ENJOY!


    CREDITS TO THE OWNER!
    Mellina.rar
×
×
  • Create New...

Important Information

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