Jump to content

Kichi

Members
  • Content Count

    97
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Kichi

  1. wew how mister? /spin
  2. Helo, i need help to solve my problem that is void clif_GlobalMessage(struct block_list* bl, const char* message) { char buf[100]; int len; unsigned long color1 = strtoul("0x00FFFF",NULL,0); // DEFAULT: BLUE SEA nullpo_retv(bl); if(!message) return; len = strlen(message)+1; if( len > sizeof(buf)-12 ) { ShowWarning("clif_GlobalMessage: Truncating too long message '%s' (len=%d).n", message, len); len = sizeof(buf)-12; } WBUFW(buf,0)=0x2C1; WBUFW(buf,2)=len+12; WBUFL(buf,4)=bl->id; WBUFL(buf,8) = (color1&0x0000FF) << 16 | (color1&0x00FF00) | (color1&0xFF0000) >> 16; safestrncpy((char *) WBUFP(buf,12),message,len); clif_send((unsigned char *) buf,WBUFW(buf,2),bl,ALL_CLIENT);} my custom just make globalmes color blue, and that is static i want the globalmes read a custom color example: globalmes " hello World",00FFFF; and the globalmes not appear in pub chat, but only in message box thank you /thx
  3. run client with arabic local language
  4. i didn't read where he did post i think he did post at script support state and time counter like status count
  5. it related to source rather than only script
  6. page not found it will be great to open browser by @command
  7. Kichi

    Editing models

    if they are model, you should edit the texture if they are wall, u need to replace the wall with another texture --edit-- u need 3D tool, because u want to change 3D object not the texture
  8. have to use the main client? how about the packet and the source? i hope hercules could make it
  9. i hope hercules make some different using Main client maybe
  10. I don't know where to put my request, maybe this is client and source Oke i want to make request about client and source snipet that support Shop Item windows Delete this thread if imposible
×
×
  • Create New...

Important Information

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