Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/25/19 in all areas

  1. Version 1.0.0

    1362 downloads

    CHESHIRE SET CUSTOM HEADGEAR & CUSTOM ROBE Greetings again, rAthena! I'm Haziel, once more, I'm back planning on new freebies every week! Cheshire Set consists in a one Custom Headgear and a Custom Garment, Cheshire Ears and Cheshire Tail. I hope you enjoy the final product! If you're interested on my work, reach me at: By downloading this file, you agree with my Terms of Service: • YOU WILL NOT remove my signature from any of the included files. • YOU WILL NOT alter, edit, recolour any of my files unless for your personal use. • YOU WILL NOT repost, repass or mirror my work nor edited versions of it anywhere. • YOU WILL NOT sell, resell or in any manner, ask money or rewards using my work as exchange. • YOU WILL NOT claim my work as yours.
    Free
    5 points
  2. Hello Everyone So as of late I am playing Pokemon game on discord and there is this sub game where the bot will spawn pokemon image on the channel and the user on channel only need to guess what is the name of the pokemon, it work to substitute Poke-Ball system and I think this system not far of from disguise so I am thinking to create this one just for the fun, the code is simple and crude so here if any of you interested to make it more robust please do get the needed file here: https://github.com/Litro/disguise-discord to run it you need to fill the value required in config.json file "token" : "" "apikey" : "", "WhiteList": [""], token: you can read the guide how to obtain discord bot token from here apikey: you need to request an API key. Please register an account in divine-pride.net forum and request a key in your profile page. WhiteList: is user id of staff that can use the command to start or stop disguise event. you can read it here for how to obtain it.
    1 point
  3. ok i fix it my self - script woe_point -1,{ OnPCKilLEvent: if ( getcharid(3) != killedrid && strcharinfo(3) == "aldeg_cas03" ) { set #WOE_POINTS,#WOE_POINTS+1; dispbottom "Gained 1 WoE Points. Total : "+ #WOE_POINTS +" WoE Points."; } end; }
    1 point
  4. I bet it's because I don't yet have this : https://github.com/rathena/rathena/commit/fe197bfa120aef5fd31c6896122b35fdc06774b4#diff-acba7818fb777457f5cbbcea9293f9c4 Maybe I should try to find a way to update my files anyway, this seems to also fix that "monsters have too low matk" bug which seems to be a very big deal. I better make a complete backup first...
    1 point
  5. setarray .@min[1], 1, // Hair style 0 crashed my client last time I tested. 0, 0; hmm... just tested hair style 0 works in my hexed client perhaps its different in every client version or maybe you just missing that palette if(!.@opt) { stand; getmapxy .@m$,.@x,.@y,UNITTYPE_PC; unitwalk getcharid(3),.@x,.@y - 1; } hmm ? rathena seems to be missing setunitdir ok try 1 more time //===== rAthena Script ====================================== //= Stylist npc //===== By: ================================================== //= AnnieRuru //= original by Euphy //===== Current Version: ===================================== //= 1.3 //===== Compatible With: ===================================== //= rAthena 2019-01-24 //===== Description: ========================================= //= stylist npc //===== Topic ================================================ //= https://rathena.org/board/topic/118030-help-restriction-stylist-npc/ //===== Additional Comments: ================================= //= 1 more time, this time use CSV method, this method is understood by many //============================================================ prontera,165,176,1 script Stylist HIDDEN_NPC,{ .@choose = select( "Hair style", "Hair color", "Cloth color" ) -1; .@lookpart = .@part = .look[.@choose]; if ( BaseClass == Job_Summoner ) .@part += Job_Summoner; .@revert = .@i = inarray( getd(".list"+ .@part), getlook( .@lookpart ) ); while ( true ) { setlook .@lookpart, getd(".list"+ .@part +"["+ .@i +"]"); dispbottom "This is style #"+ getd(".list"+ .@part +"["+ .@i +"]") +"."; .@next = ( .@i == .maxindex[.@part] )? 0 : .@i+1; .@previous = ( .@i == 0 )? .maxindex[.@part] : .@i-1; switch ( select( " ~ Next (^0055FF"+ getd(".list"+ .@part +"["+ .@next +"]") +"^000000)", " ~ Previous (^0055FF"+ getd(".list"+ .@part +"["+ .@previous +"]") +"^000000)", " ~ Jump to...", " ~ Revert to original (^0055FF"+ getd(".list"+ .@part +"["+ .@revert +"]") +"^000000)" ) ) { case 1: .@i = .@next; break; case 2: .@i = .@previous; break; case 3: dispbottom "Choose a style between 0 - "+ .maxstyles[.@part] +"."; input .@num; .@j = inarray( getd(".list"+ .@part), .@num ); if ( .@j == -1 ) dispbottom "That style is unavailable"; else .@i = .@j; break; case 4: .@i = .@revert; } } end; OnInit: // .list$[LOOK_HAIR] = "0-5,11-18,20-23"; .list$[LOOK_HAIR] = "0-"+ getbattleflag("max_hair_style"); .list$[LOOK_HAIR_COLOR] = "0-"+ getbattleflag("max_hair_color"); .list$[LOOK_CLOTHES_COLOR] = "0-"+ getbattleflag("max_cloth_color"); .list$[Job_Summoner + LOOK_HAIR] = "0-"+ getbattleflag("max_hair_style"); .list$[Job_Summoner + LOOK_HAIR_COLOR] = "0-"+ getbattleflag("max_hair_color"); .list$[Job_Summoner + LOOK_CLOTHES_COLOR] = "0-1"; freeloop true; setarray .look[0], LOOK_HAIR, LOOK_HAIR_COLOR, LOOK_CLOTHES_COLOR, Job_Summoner + LOOK_HAIR, Job_Summoner + LOOK_HAIR_COLOR, Job_Summoner + LOOK_CLOTHES_COLOR; for ( .@i = 0; .@i < 6; ++.@i ) { deletearray .@array$; .@index = 0; explode( .@array$, .list$[.look[.@i]], "," ); .@size = getarraysize(.@array$); for ( .@j = 0; .@j < .@size; ++.@j ) { if ( compare( .@array$[.@j], "-" ) ) { explode( .@range$, .@array$[.@j], "-" ); .@min = atoi(.@range$[0]); .@max = atoi(.@range$[1]); .@range = .@max - .@min +1; for ( .@k = 0; .@k < .@range; ++.@k ) setd ".list"+ .look[.@i] +"["+( .@index++ )+"]", .@min + .@k; } else setd ".list"+ .look[.@i] +"["+( .@index++ )+"]", atoi( .@array$[.@j] ); } .maxindex[.look[.@i]] = .@index -1; .maxstyles[.look[.@i]] = getd(".list"+ .look[.@i] +"["+( .@index -1 )+"]"); } end; }
    1 point
  6. hello! this is my first patcher design. kindly rate it thanks! ? a little update ?
    1 point
×
×
  • Create New...