Jump to content

Bringer

Members
  • Content Count

    148
  • Joined

  • Last visited


Reputation Activity

  1. Like
    Bringer reacted to csnv in How much does it cost to maintain a server in 2023?   
    1- Gepard shield, by Functor.
    2- Take this with a pinch of salt, but I'd say that as long as you have 3 cores available (1 for login/char, 1 for sql and 1 for map) it's enough for 100 people, as long as the CPU is powerful enough in single thread. So probably something cheap like 30 dollars/euro should suffice.
  2. Like
    Bringer reacted to Skyzone in Unauthorized AndRO usage by Skyzone Hosting   
    Hello I dont distribute AndRO source and first of all I don't have any Message on Our Legit Facebook Page. If I receive a message from you let me take a Screen Shots with your contacted message.
    Also we partner some dev and dont release with our name from other work. SHOW A MESSAGE THAT FROM OUR FACEBOOK PAGE. 

    2ndly we do recommendation to contact Chris if there is looking on AndRO and if there is want a PandRO we recommend it to Poring Devs. some of this are not connected on Skyzone Hosting we only Help them for there customer's we dont have income to them I'm just adding them to our website. as you see PandRO and AndRO are in my website but AndRO is no Page because im not dont yet to contact the original creator since Mailing is hard to contact them.

    OUR FACEBOOK PAGE IS HERE: https://www.facebook.com/skyzonehosting

    DO NOT ACCUSE US NO PROOF THAT WE DISTRIBUTE YOUR OWN WORK. WE ONLY SUGGEST AND HELP TO INTRODUCE TO NEW OWNER FROM OUR COUNTRY.

    Here some proof that I always do recommend to my customer to get andRO from Chris. 
    My Customers we help them if they dont know what AndRO needs





     

     
  3. Like
    Bringer reacted to AnnieRuru in Dota PVP Ladder   
    3.4 - script
    - fix the missing body style not display correctly
     
    thanks to this unknown member but AHHHHH HE REALLY BOTHER ME A LOT IN DISCORD for telling me that
    IT'S YOUR PROBLEM that YOUR SERVER HAS CUSTOM COSTUME ITEM OK ??
    this script HAS to show offline players' data, that's why can't show if the player is actually wearing 3rd job or 4th job costume
    its your custom item fault OK ???
    OnEquipScript: <" changebase roclass(eaclass()|EAJL_THIRD); "> OnUnequipScript: <" changebase Class; ">  
  4. Upvote
    Bringer reacted to AnnieRuru in KoE Modification   
    can do this as paid service ?
     
    if there are other members willing to do, feel free to post on the forum
     
    but this seems very custom like, should be done as paid service ... contact me on discord
  5. Like
    Bringer reacted to AnnieRuru in Promotional Code   
    I got 2 rep up for making that grumbling post, that just shows how many members really like this idea
    and of course I knew many topics talking about this script again and again and again and again and again and again and again and again and again and again and again and again !!!
    so I make one myself and hopefully don't want see people talking about that bug script again !!
     
    What this script does ?
    GM generate some sort of gibberish word and promotes it on social media
    then players input that gibberish word and able claim the items
     
    honestly I don't really see the point of gibberish word,
    I made this script in a drop down menu, players can just select it from the menu and claim it <_<
     
    Download: 1.3
    script
     
    here's an example by Philippine RO, from this post

     
    TODO :
    1. add coloring to the text
    2. HULD compatible ?
    3. maybe someday can rewrite this whole damn thing with .npc_var sync with SQL variables so don't have to call query_sql too frequently
     
     
  6. Upvote
    Bringer reacted to AnnieRuru in gold_rank not working (rathena)   
    so many rathena members here ... at least please put it on your profile so people like us don't have to do convert it again to rathena blah blah
     
    so many mistakes on your script
    1. the checkweight should check from the variable from the *input, if you put check on goldPoint then if players actually farm high amount they might forever said being overweight
    2. the overall ranking you put it this way
    for (.@i = 0; .@i < .@nb; ++.@i) mes "[ ^C6A518Gold Room Assistant^000000 ]"; mes (.@i +1)+". "+ .@name$[.@i] +" - "+ .@ppk[.@i] +" Kills"; should be this way
    mes "[ ^C6A518Gold Room Assistant^000000 ]"; for (.@i = 0; .@i < .@nb; ++.@i) mes (.@i +1)+". "+ .@name$[.@i] +" - "+ .@ppk[.@i] +" Kills"; 3. and the "your current rank" can be found on the pinned topic
    4. rathena don't support strcharinfo(PC_MAP), it just strcharinfo(3)
    5. finally its `Points` not `Kills`, this script gives random 1~3 points per kill, and the SQL table log in points not kills
     
    https://gist.github.com/AnnieRuru/88e558b500a6e4afe00b559e7dcacd1b
  7. Like
    Bringer reacted to AnnieRuru in Advance SQL commands   
    6. How to show the current rank of the player
    Question : This is the part of the script, output as below
    .@nb = query_sql("SELECT `name`, `kills` FROM `pvpladder` ORDER BY `kills` DESC LIMIT 5", .@name$, .@kills); for ( .@i = 0; .@i < .@nb; .@i++ ) mes "No."+(.@i+1)+" ["+ .@name$[.@i] +"] ~ "+ .@kills[.@i] +" kills"; No.1 [Alice] ~ 19 kills No.2 [Emily] ~ 11 kills No.3 [Irene] ~ 11 kills No.4 [Brittany] ~ 8 kills No.5 [Fiona] ~ 7 kills  2nd place and 3rd place has the same amount of kills, how do I make both of them display as 2nd place like this ?
    No.1 [Alice] ~ 19 kills No.2 [Emily] ~ 11 kills No.2 [Irene] ~ 11 kills No.4 [Brittany] ~ 8 kills No.5 [Fiona] ~ 7 kills  
    Answer :
    Method no.1: Convert the table into InnoDB will return the result faster. Allow to use OFFSET
    .@nb = query_sql("SELECT `name`, `kills`, FIND_IN_SET(`kills`, (SELECT GROUP_CONCAT(`kills` ORDER BY `kills` DESC) FROM `pvpladder`)) FROM `pvpladder` ORDER BY `kills` DESC LIMIT 5", .@name$, .@kills, .@rank); for ( .@i = 0; .@i < .@nb; ++.@i ) mes "No."+ .@rank[.@i] +" ["+ .@name$[.@i] +"] ~ "+ .@kills[.@i] +" kills"; Method no.2: This method return result faster than method 1 in huge table. Not allow to use OFFSET
    .@query$ = "SELECT `name`, IF(@d=t.`kills`, @r, @r:=@i), @d:=t.`kills`, @i:=@i+1 "; .@query$ += "FROM `pvpladder` t, (SELECT @d:=0, @r:=0, @i:=1)q "; .@query$ += "ORDER BY `kills` DESC LIMIT 5"; .@nb = query_sql(.@query$, .@name$, .@rank, .@kills, .@dummy); for ( .@i = 0; .@i < .@nb; ++.@i ) mes "No."+ .@rank[.@i] +" ["+ .@name$[.@i] +"] ~ "+ .@kills[.@i] +" kills"; .
    .
    Question : How do I show the current ranking of the player ?
    mes "Your kills -> "+ .@kills; mes "Your rank -> "+ .@rank; Answer :
    query_sql "SELECT `kills`, 1+(SELECT COUNT(1) FROM `pvpladder` t1 WHERE t1.`kills` > t2.`kills`) FROM `pvpladder` t2 WHERE `char_id` = "+ getcharid(0), .@kills, .@rank; Remember to index the `kills` field
     
    Reference : https://dba.stackexchange.com/questions/13703/get-the-rank-of-a-user-in-a-score-table
    .
     
  8. Like
    Bringer reacted to Dastgir in dDelays(Anti NoDelays) - Releasing this weekend   
    Update 27-10-2019:
    dDelays will be up for Hercules in next 24 hours.
    For other emulators, It will take few days (please be patient)
    dDelays will be initially available for linux only, windows build is in progress and will be up with other emulator update
  9. Upvote
    Bringer reacted to Legend in Gate Script request   
    You can use this if you want:
    It behaves just like the barricade at novice ground.
    Please report any error found.
     
    http://upaste.me/c2e636755046b6638

    Note: Only 99 GM can activate the command.
  10. Upvote
    Bringer reacted to raPalooza~ in raPalooza's Cursor   
    File Name: raPalooza's Cursor
    File Submitter: raPalooza~
    File Submitted: 24 May 2016
    File Category: Sprites & Palettes
     
    This is a cursor modification I made for ragnarok, following the thoughts and feeling of my past works,
    I've created this with the intention of innovating the feeling of the game without letting the design break the game visual with a big gap in style.
     
    Some pieces are made from other mmos such as maplestory for example ( and some others I cant remember right now )
     
    I've got some files backed up and lost others due to lost data on my old computer(it's an old project) so it's a little hard to deal modifications from the feedback, but i'll do my best.
     
    A lot of people came asking for this cursor over PM and Posts, glad you guys asked for it, otherwise I would let this project on the shelf, enjoy guys ;]
     
    RAN OUT OF IDEAS FOR THE NAME!
    cYA
     
    Click here to download this file
  11. Upvote
    Bringer reacted to raPalooza~ in Savior Damage Font   
    Thanks everybody for the support ;DD it means a lot!

    @@Bringer
    Hummmm... it is actually a very good idea indeed!!! I'll do some testing with those status effect and see what is possible to do with them! Thank you very much for the idea bringer!
     
  12. Upvote
    Bringer reacted to Kuya Jeo in request for Mvp Points   
    @@Bringer
     
    if ( getmonsterinfo( killedrid, MOB_MVPEXP ) && strcharinfo(3) == "PUT THE MVP MAP HERE" ) { set #CASHPOINTS, #CASHPOINTS + 10; end; }   example : // EDDGA if ( getmonsterinfo( killedrid, MOB_MVPEXP ) && strcharinfo(3) == "pay_fild11" ) { set #CASHPOINTS, #CASHPOINTS + 10; end; }
  13. Upvote
    Bringer reacted to malufett in Reduce Damage Final Strike   
    change formula @battle.c
    wd.damage = 40*sstatus->str +skill_lv*(sstatus->hp/10 + 35);
  14. Upvote
    Bringer reacted to Emistry in FCP NPC Script   
    SC_PROTECTWEAPON 72SC_PROTECTSHIELD 73SC_PROTECTARMOR 74SC_PROTECTHELM 75 https://github.com/HerculesWS/Hercules/blob/master/db/const.txt
  15. Upvote
    Bringer reacted to malufett in [UPDATE] Harmony Patch   
    Harmony Patch!!!
     
    This patch is based on Ossi's release(http://herc.ws/board/topic/3267-harmony-patch-3312-30-mai/) and I update it as requested, to support new revision of Hercules as of 7401d98649558d58d97d4543db1d74d33652127b
     
    so for those Hercules users with harmony enable and can't update their server then this is your chance...
     
     
    Download:
    Hercules-Harmony .PATCH - Fixed a minor bug. Thanks to @@trinity
    Hercules-Harmony.PATCH
     
    btw I accept coffee..
     

  16. Upvote
    Bringer reacted to evilpuncker in help about itemdb   
    http://haru.ws/hercules/itemdbconverter/ or http://herc.ws/board/topic/8264-item-db-converter/
×
×
  • Create New...

Important Information

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