-
Posts
99 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Dragonis1701
-
Upgrading from 32 bit signed Integer to 64 bit signed integer
Dragonis1701 replied to Dragonis1701's question in Source Support
Does anyone know what he meant? -
Hi. So, I added status effect icons for the dancer and bard songs. I noticed that when a player enters the song, the status icon timer is the time the song would last. So, Poem of Bragi has a status icon that says it will last for 3 minutes, regardless of when the player entered the song. I'm trying to change it so that the timer will now say 20 seconds, and refresh every second, as it does for when a player is in the song effect. Since I can't find a timer in general on status.c, I'm not exactly sure where to start. Can someone help me? )X Some additional information: It seems that when the player relogs while under the effects of Poem of Bragi, the timer is correct when they log back in. Showing a timer less than 20 seconds.
-
More information, it shows criticals on players but not on monsters.
-
It's going to be exactly what I already posted but okay. text.txt
-
Then the code should work for you if you copied it correctly.
-
Are you using a different emulator? My code says sd->state.arealoot not struct s_state.
-
Nah, the pc.c codes are not right. You just do the last two codes I posted: the one in clif.c and the one in atcommand.c
-
So... I accidentally did something, not sure when it happened so I'm not sure which file it is in but I have isolated it to the source. Critical hits no longer display with the red animation window. Critical hits still deal more damage and such, they just look like regular damage numbers. How do I fix that? Some more info: Monster and player traps display crit animation but do not deal extra damage towards them. I'm using a 2013-08-07 client. I know it's not the client, though, because I switched over to 2012-04-10 and had the same issue. Tried replacing the entire map folder with a backup and recompiled, still no crit animation. I'm running out of ideas. It's also pre-renewal.
-
atcommand.c /*========================================== * @arealoot *------------------------------------------*/ ACMD_FUNC(arealoot) { if (sd->state.arealoot) { sd->state.arealoot = 0; clif_displaymessage(sd->fd,"Arealoot is now disabled."); return 0; } sd->state.arealoot = 1; clif_displaymessage(sd->fd,"Arealoot is now enabled."); return 0; } void atcommand_basecommands(void) { AtCommandInfo atcommand_base[] = { ACMD_DEF(arealoot),
-
Oh, hey guys. Sorry, I didn't know you replied to this topic. I'm quoting you both so you both get a notification. Here is the code: void clif_parse_TakeItem(int fd, struct map_session_data *sd) { struct flooritem_data *fitem; int map_object_id; int skill_greed(struct block_list *bl, va_list ap); //First we declare a variable that gets the return value int debug_i = 0; map_object_id = RFIFOL(fd,packet_db[sd->packet_ver][RFIFOW(fd,0)].pos[0]); fitem = (struct flooritem_data*)map_id2bl(map_object_id); do { if (pc_isdead(sd)) { clif_clearunit_area(&sd->bl, CLR_DEAD); break; } if (fitem == NULL || fitem->bl.type != BL_ITEM || fitem->bl.m != sd->bl.m) break; if (pc_cant_act(sd)) break; if (sd->state.arealoot == 1) { //Now we give the variable debug_i = map_foreachinrange(skill_greed,&sd->bl,3,BL_ITEM,&sd->bl); //Now we print it to the map-server console so you can see what it is while playing //ShowDebug("debug_i=%d", debug_i); //Give fail packet if no item was looted if(debug_i == 0) break; } else { if (!pc_takeitem(sd, fitem)) break; } return; } while (0); // Client REQUIRES a fail packet or you can no longer pick items. clif_additem(sd,0,0,6); } That code is located in clif.c. I also added a command @arealoot in the atcommand.c. If you need that code as well, just let me know.
-
Upgrading from 32 bit signed Integer to 64 bit signed integer
Dragonis1701 replied to Dragonis1701's question in Source Support
I'm sorry but how do I do that? =X -
Upgrading from 32 bit signed Integer to 64 bit signed integer
Dragonis1701 posted a question in Source Support
I got rAthena at a compile I was pretty happy with, one from over a year and a half ago. I've been modifying it, perfecting it to my liking. Just working on things for at least six hours a day for at least six months. Now, I find out that my required experience is stuck at 2,147,483,647 which is the limit for the 32 bit signed integer but the standard server seems to be running on double that, 64 bit. Is there anyone who could help me switch over from one to the other so I can get my required experience up to 4294967295? -
My Maximum EXP is exactly half of yours. 2147483647. How do I increase it to 4294967295?
-
Hi. I'm just curious if there is a way to change the maximum experience requirement to level up. It seems no matter what I change the value to in the job_exp.txt, the experience requirement to level cannot surpass 2.1 billion. Is there a way I can raise this limit?
-
So, I worked on it some more and found that using the already existing code was better. So, now I have it where the code is like this: Incorrect code removed. And now with this code, it will clear multiple items but it will not loot multiple items. Is there a command I'm missing that can provide this function? Got it to work with Playtester's help. ^^
-
Close please. I made a mistake. =X
-
So, I've looked at hercules' plugin for @arealoot and saw that it used greed's code to help do what it wanted. I decided to try and use it for myself and convert it over to rAthena but I'm having a bit of trouble. I don't dabble that much in the source, so I'm not very good at it but this is what I have so far: Incorrect code removed. It compiles but it does not change anything. It does give me a warning, though. This one: "1>c:\rathena\src\map\pc.c(4254): warning C4047: '==' : 'int (__cdecl *)(map_session_data *,flooritem_data *)' differs in levels of indirection from 'int'" I think I understand what it means but I'm not sure how to fix it. Please help. =X
-
Did anyone ever get @Arealoot to work on rAthena?
-
It was a client issue. I used hxd to find the string and just used "space" to fix it. Please close.
-
After failing to login, with the wrong password, three times, the player gets this error message and then is directed to ragnarok.co.kr What causes this and how do I fix it? Thanks in advance. ^^
-
After failing to login to your account three times, you get this message and then it redirects you to http://ro.gnjoy.com/. Any of you know what causes this message to pop up and how I can stop this error from appearing again?
-
Alright, I'll try it and see if it produces any errors. Oddly enough, out of the eight hours the server was up, I only received two errors, on the random rolling 137 and 141. Not sure as to why. It hasn't given me an error all day. Thank you, Emistry.
-
I have a script where it's supposed to spawn two treasure chests at the top of every hour but for some reason it shells out errors sometimes. Can you tell me what I did wrong? - script Chest -1,{ OnClock0000: goto Spawn; OnClock0100: goto Spawn; OnClock0200: goto Spawn; OnClock0300: goto Spawn; OnClock0400: goto Spawn; OnClock0500: goto Spawn; OnClock0600: goto Spawn; OnClock0700: goto Spawn; OnClock0800: goto Spawn; OnClock0900: goto Spawn; OnClock1000: goto Spawn; OnClock1100: goto Spawn; OnClock1200: goto Spawn; OnClock1300: goto Spawn; OnClock1400: goto Spawn; OnClock1500: goto Spawn; OnClock1600: goto Spawn; OnClock1700: goto Spawn; OnClock1800: goto Spawn; OnClock1900: goto Spawn; OnClock2000: goto Spawn; OnClock2100: goto Spawn; OnClock2200: goto Spawn; OnClock2321: goto Spawn; Spawn: setarray .@map$[0],"ama_fild01","ayo_fild01","ayo_fild02","bra_fild01","cmd_fild01","cmd_fild02","cmd_fild03","cmd_fild04","cmd_fild05","cmd_fild06","cmd_fild07","cmd_fild08","cmd_fild09","ein_fild01","ein_fild02","ein_fild03","ein_fild04","ein_fild05","ein_fild06","ein_fild07","ein_fild08","ein_fild09","ein_fild10","dic_fild01","dic_fild02","gef_fild00","gef_fild01","gef_fild02","gef_fild03","gef_fild04","gef_fild05","gef_fild06","gef_fild07","gef_fild08","gef_fild09","gef_fild10","gef_fild11","gef_fild12","gef_fild14","gon_fild01","hu_fild01","hu_fild02","hu_fild03","hu_fild04","hu_fild05","hu_fild06","hu_fild07","lhz_fild01","lhz_fild02","lhz_fild03","lou_fild01","xmas_fild01","man_fild01","man_fild02","man_fild03","moc_fild01","moc_fild02","moc_fild03","moc_fild07","moc_fild11","moc_fild12","moc_fild13","moc_fild16","moc_fild17","moc_fild18","moc_fild20","moc_fild21","moc_fild22","mosk_fild02","mjolnir_01","mjolnir_02","mjolnir_03","mjolnir_04","mjolnir_05","mjolnir_06","mjolnir_07","mjolnir_08","mjolnir_09","mjolnir_10","mjolnir_11","mjolnir_12","nif_fild01","nif_fild02","pay_fild01","pay_fild02","pay_fild03","pay_fild04","pay_fild05","pay_fild06","pay_fild07","pay_fild08","pay_fild09","pay_fild10","pay_fild11","prt_fild00","prt_fild01","prt_fild02","prt_fild03","prt_fild04","prt_fild05","prt_fild06","prt_fild07","prt_fild08","prt_fild09","prt_fild10","prt_fild11","ra_fild01","ra_fild02","ra_fild03","ra_fild04","ra_fild05","ra_fild06","ra_fild07","ra_fild08","ra_fild09","ra_fild10","ra_fild11","ra_fild12","ra_fild13","spl_fild01","spl_fild02","spl_fild03","um_fild01","um_fild02","um_fild03","um_fild04","ve_fild01","ve_fild02","ve_fild03","ve_fild04","ve_fild05","ve_fild07","yuno_fild01","yuno_fild02","yuno_fild03","yuno_fild04","yuno_fild05","yuno_fild06","yuno_fild07","yuno_fild08","yuno_fild09","yuno_fild10","yuno_fild11","yuno_fild12"; set .@rand1,rand(0,143); monster .@map$[.@rand1],0,0,"Treasure Chest",1732,1; sleep2 1000; setarray .@map$[0],"ama_fild01","ayo_fild01","ayo_fild02","bra_fild01","cmd_fild01","cmd_fild02","cmd_fild03","cmd_fild04","cmd_fild05","cmd_fild06","cmd_fild07","cmd_fild08","cmd_fild09","ein_fild01","ein_fild02","ein_fild03","ein_fild04","ein_fild05","ein_fild06","ein_fild07","ein_fild08","ein_fild09","ein_fild10","dic_fild01","dic_fild02","gef_fild00","gef_fild01","gef_fild02","gef_fild03","gef_fild04","gef_fild05","gef_fild06","gef_fild07","gef_fild08","gef_fild09","gef_fild10","gef_fild11","gef_fild12","gef_fild14","gon_fild01","hu_fild01","hu_fild02","hu_fild03","hu_fild04","hu_fild05","hu_fild06","hu_fild07","lhz_fild01","lhz_fild02","lhz_fild03","lou_fild01","xmas_fild01","man_fild01","man_fild02","man_fild03","moc_fild01","moc_fild02","moc_fild03","moc_fild07","moc_fild11","moc_fild12","moc_fild13","moc_fild16","moc_fild17","moc_fild18","moc_fild20","moc_fild21","moc_fild22","mosk_fild02","mjolnir_01","mjolnir_02","mjolnir_03","mjolnir_04","mjolnir_05","mjolnir_06","mjolnir_07","mjolnir_08","mjolnir_09","mjolnir_10","mjolnir_11","mjolnir_12","nif_fild01","nif_fild02","pay_fild01","pay_fild02","pay_fild03","pay_fild04","pay_fild05","pay_fild06","pay_fild07","pay_fild08","pay_fild09","pay_fild10","pay_fild11","prt_fild00","prt_fild01","prt_fild02","prt_fild03","prt_fild04","prt_fild05","prt_fild06","prt_fild07","prt_fild08","prt_fild09","prt_fild10","prt_fild11","ra_fild01","ra_fild02","ra_fild03","ra_fild04","ra_fild05","ra_fild06","ra_fild07","ra_fild08","ra_fild09","ra_fild10","ra_fild11","ra_fild12","ra_fild13","spl_fild01","spl_fild02","spl_fild03","um_fild01","um_fild02","um_fild03","um_fild04","ve_fild01","ve_fild02","ve_fild03","ve_fild04","ve_fild05","ve_fild07","yuno_fild01","yuno_fild02","yuno_fild03","yuno_fild04","yuno_fild05","yuno_fild06","yuno_fild07","yuno_fild08","yuno_fild09","yuno_fild10","yuno_fild11","yuno_fild12"; set .@rand1,rand(0,143); monster .@map$[.@rand1],0,0,"Treasure Chest",1732,1; end; } The errors that show up, in the map server console, are: "Warning: script:getelementofarray: index out of range (141) Debug: Data: variable name = ".@map$" index=0 Debug: Source (NPC): Chest (invisible/not on a map)"
-
*Bump* I'm willing to pay for source edits that work.
-
Is it possible to cap Reject Sword (Stalker Skill), similar to Reflect Shield's cap, so that the player cannot reflect more than their max hp as damage?