-
Posts
386 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Promise
-
Uh, what kind of diff? is it a source property or just some hex code?
-
Is there any way to use gif images for loading/login screens? I know that i cant use them at the moment, but... where do i need to edit to allow it? Like client hex edits, or something... I dont know if i can even do a modification to allow it, so thats why im asking. Thanks in adv.
-
Check the sql data on the php files. Also check that the MySQL user of the CP have the permissons to make selections.
-
Shop NPC that has a dialogue before opening the shop
Promise replied to Jarms Firstclaw's question in Script Requests
You have to make a shop in the same npc, then use de command "callshop" Example: - shop shop1 0,512:-1 - script NPC WithShop 853,{ mes "Some Text Here"; next; callshop "shop1",0; } Something like that. callshop "Shopname",parameter; 0 = The normal window (buy, sell and cancel) 1 = The buy Window 2 = The sell Window -
Just wrong installation. You should try to install it again, i had the same problem, and solve it just reinstalling it.
-
Didn't understand anything on this video. What's the idea of that script? When the guardians should appear? Same with crystals. Can you explain a little? maybe i can recreate that script.
-
You have to enable this option when u patch your client. http://prntscr.com/c72z4o
-
Que guía usaste para crear el cliente? Compilaste el emulador luego de editar el mmo.h?
-
Isn't Mob: - [Monster]: the same (? jk. Nice work
-
Yo uso cliente 20100730 y he hecho modificaciones a los state icon. Los clientes viejos si lo leen: data/lua files/stateicon/efstids.lua data/lua files/stateicon/stateiconinfo.lua data/lua files/stateicon/stateiconinfo_f.lua
-
U can pay a host for 15usd month and the dev, depends on what u want, if u dont know anything, someone can make u a nice serv for... 70usd?
-
What u mean?
-
Hi guys, i just re-designed a free flux CP: DEMO The original: https://rathena.org/board/files/file/3355-fluxcp-theme-v2-brightix/ Credits to the Coder/designer. Any feedback is welcome.
-
u dont, its an invisible script, not npc. just leave it - script
-
ic... okay, thank you so much! I'll learn about that.
-
So.. should i add a query sql on if (response && !response.error_message) { // HERE? alert('Shared the link!'); } else { alert('Error!'); }
-
Hi guise, i have a question about a web system. Is there any chance to make a facebook share button that when u share the server facebook page, it adds a sql value? Like... I share the server page on my profile. Then if(#facebookshare == 2) end; else adds #facebookshare to the server DB OnPCLoginEvent: if(#facebookshare == 1) getitem [email protected], 1; set #facebookshare, 2; So the players will get a reward on facebook share, only one time per account.
-
Try to search clif.c: void clif_parse_UseSkillToPos(int fd, struct map_session_data *sd) { struct s_packet_db* info = &packet_db[sd->packet_ver][RFIFOW(fd,0)]; if (pc_cant_act(sd)) return; if (pc_issit(sd)) return; clif_parse_UseSkillToPosSub(fd, sd, RFIFOW(fd,info->pos[0]), //skill lv RFIFOW(fd,info->pos[1]), //skill num RFIFOW(fd,info->pos[2]), //pos x RFIFOW(fd,info->pos[3]), //pos y -1 //Skill more info. ); } and replace to: void clif_parse_UseSkillToPos(int fd, struct map_session_data *sd) { struct s_packet_db* info = &packet_db[sd->packet_ver][RFIFOW(fd,0)]; if (pc_cant_act(sd)) return; if (pc_issit(sd)) return; if (sd->state.storage_flag) return; clif_parse_UseSkillToPosSub(fd, sd, RFIFOW(fd,info->pos[0]), //skill lv RFIFOW(fd,info->pos[1]), //skill num RFIFOW(fd,info->pos[2]), //pos x RFIFOW(fd,info->pos[3]), //pos y -1 //Skill more info. ); } Not tested.
-
Not bad. You should change the green texture, and put something in the center (some texture draw, not an object).
-
prontera,97,101,4 script DooDoo#D2 459,{ set .delaytime,60; mes "[DooDoo]"; mes "......."; next; menu "broadcast",L_bcast; L_bcast: if(bc_delay > gettimetick(2) || &bc_delay > gettimetick(2)){ mes "[DooDoo]"; mes "you gotta wait!"; close; } announce "bla bla bla bla bla bla",bc_all,0x00B4FF; set bc_delay,gettimetick(2)+.delaytime; set $bc_delay,gettimetick(2)+.delaytime; close; } Use &global_variable
-
Solved. Thank u so much dude.
-
Fking love u. Really thanks mate. Another question, trying to store account cooldown and getting this: http://prntscr.com/bmfxnr Script: set #partyquest1, gettimetick ( 2 ) + 21600; Its just 6 hours (360 mins) and showing 24mil mins and storing: 1467198312 secs in acc_reg_num table.
-
//===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Basic healer script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Aligned coordinates with @go. //= 1.2 Added repair/Identifier //============================================================ - script Healer -1,{ [email protected] = 0; // Zeny required for heal [email protected] = 0; // Also buff players? (1: yes / 0: no) [email protected] = 0; // Heal delay, in seconds [email protected] = 0; // Repairall (1: yes / 0: no) [email protected] = 0; // Identify (1: yes / 0: no) if (@HD > gettimetick(2)) end; if ([email protected]) { message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",[email protected]) + " Zeny."; if (Zeny < [email protected]) end; if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2) end; Zeny -= [email protected]; } specialeffect2 EF_HEAL2; percentheal 100,100; if ([email protected]) { specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; } if ([email protected]) @HD = gettimetick(2) + [email protected]; if ([email protected]) { while (getbrokenid(1)) { repair(1); set [email protected], [email protected] +1; } if ([email protected]) dispbottom [email protected] + " items has been repaired."; end; } } if ([email protected]) { getinventorylist; for( set [email protected],0; [email protected] < @inventorylist_count; set [email protected], [email protected] + 1 ) { if ( @inventorylist_identify[[email protected]] == 1 ) continue; delitem2 @inventorylist_id[[email protected]],1,0,0,0,0,0,0,0; getitem @inventorylist_id[[email protected]],1; } } end; } // Duplicates //============================================================ alberta,25,240,6 duplicate(Healer) Healer#alb 909 aldebaran,135,118,6 duplicate(Healer) Healer#alde 909 amatsu,200,79,4 duplicate(Healer) Healer#ama 909 ayothaya,207,169,6 duplicate(Healer) Healer#ayo 909 comodo,184,158,6 duplicate(Healer) Healer#com 909 einbech,57,36,6 duplicate(Healer) Healer#einbe 909 einbroch,57,202,6 duplicate(Healer) Healer#einbr 909 geffen,115,72,6 duplicate(Healer) Healer#gef 909 gonryun,156,122,6 duplicate(Healer) Healer#gon 909 hugel,89,150,6 duplicate(Healer) Healer#hug 909 izlude,121,150,6 duplicate(Healer) Healer#izl 909 //Pre-RE: (125,118) jawaii,250,139,4 duplicate(Healer) Healer#jaw 909 lighthalzen,152,100,6 duplicate(Healer) Healer#lhz 909 louyang,226,103,4 duplicate(Healer) Healer#lou 909 manuk,272,144,6 duplicate(Healer) Healer#man 909 mid_camp,203,289,6 duplicate(Healer) Healer#mid 909 moc_ruins,72,164,4 duplicate(Healer) Healer#moc 909 morocc,153,97,6 duplicate(Healer) Healer#mor 909 moscovia,220,191,4 duplicate(Healer) Healer#mos 909 niflheim,212,182,5 duplicate(Healer) Healer#nif 909 payon,179,106,4 duplicate(Healer) Healer#pay 909 prontera,162,193,4 duplicate(Healer) Healer#prt 909 rachel,125,116,6 duplicate(Healer) Healer#rac 909 splendide,201,153,4 duplicate(Healer) Healer#spl 909 thor_camp,249,74,4 duplicate(Healer) Healer#thor 909 umbala,105,148,3 duplicate(Healer) Healer#umb 909 veins,217,121,4 duplicate(Healer) Healer#ve 909 xmas,143,136,4 duplicate(Healer) Healer#xmas 909 yuno,164,45,4 duplicate(Healer) Healer#yuno 909 // Duplicates (Renewal) //============================================================ brasilis,194,221,6 duplicate(Healer) Healer#bra 909 dewata,195,187,4 duplicate(Healer) Healer#dew 909 dicastes01,201,194,4 duplicate(Healer) Healer#dic 909 ecl_in01,45,60,4 duplicate(Healer) Healer#ecl 909 malangdo,132,114,6 duplicate(Healer) Healer#mal 909 malaya,227,204,6 duplicate(Healer) Healer#ma 909 mora,55,152,4 duplicate(Healer) Healer#mora 909
-
Hey there, even if we hex the .exe to chage the extencion, we cant even use gif? u Know about that?
-
Thabk u, ill check it. didn't found that. bump!