Jump to content

  •  

anjasoleil0

Member Since 21 Aug 2014
Offline Last Active Mar 24 2017 03:08 AM
-----

Topics I've Started

2015-05-13 disguise bug

24 October 2016 - 03:36 AM

bug on @disguise in 20150513? After I move (when disguised) once, and try to move again, the sprite stays on that location (other players can see my sprite moving though).

 

Any thoughts?

 
 
 

Most stable 2015 client?

23 October 2016 - 10:42 PM

Okay, hi! I'm wondering which 2015 client is stable enough (and hercules supported) should I use? Can you give me a link to it? Thanks!

 

I'm upgrading because if the infamous bug with gtx 750 and 970 video cards where you have to CTRL + ALT + DELETE and cancel so sprites wont look... pixelated (more pixelated that is).

 

Thanks in advance!


Fakename, party invite/guild invite.

16 September 2016 - 08:43 AM

Okay. Here we go. I used this diff below so whenever I fakename, the guild/party will still be visible, but the problem is i can't invite the fakenamed player to a guild/party. Any solutions?

 


Index: map\clif.c
===================================================================
--- map\clif.c    (revision 15686)
+++ map\clif.c    (working copy)
@@ -8177,9 +8177,9 @@
                 WBUFW(buf, 0) = cmd = 0x195;
                 memcpy(WBUFP(buf,6), ssd->fakename, NAME_LENGTH);
                 WBUFB(buf,30) = WBUFB(buf,54) = WBUFB(buf,78) = 0;
-                break;
+            } else {
+                memcpy(WBUFP(buf,6), ssd->status.name, NAME_LENGTH);
             }
-            memcpy(WBUFP(buf,6), ssd->status.name, NAME_LENGTH);
 
             if( ssd->status.party_id )
             {
@@ -8297,14 +8297,16 @@
 
     nullpo_retv(ssd);
 
-    if( ssd->fakename[0] )
-        return; //No need to update as the party/guild was not displayed anyway.
-
     WBUFW(buf,0) = cmd;
     WBUFL(buf,2) = ssd->bl.id;
 
-    memcpy(WBUFP(buf,6), ssd->status.name, NAME_LENGTH);
-            
+    if( ssd->fakename[0] )
+    {
+        memcpy(WBUFP(buf,6), ssd->fakename, NAME_LENGTH);
+    } else {
+        memcpy(WBUFP(buf,6), ssd->status.name, NAME_LENGTH);
+    }
+
     if (!battle_config.display_party_name) {
         if (ssd->status.party_id > 0 && ssd->status.guild_id > 0 && (g = guild_search(ssd->status.guild_id)) != NULL)
             p = party_search(ssd->status.party_id);
 

 


monster hp bar, but only for mvps?

16 September 2016 - 12:31 AM

So, as the title suggests, is it possible to enable HP bars but only for mvps?

Thanks in advance for the reply.


List for .wav file used for skills?

23 August 2016 - 02:20 AM

Does anyone have a list of skills with their corresponding .wav file?