Jump to content

Dinze

Members
  • Content Count

    42
  • Joined

  • Last visited

Everything posted by Dinze

  1. I like the first one. You should blur/smudge the edge of the image to make it smoother.
  2. Are you trying to ask the user to input a number? try input instead.
  3. Dinze

    @dpt command

    Do you mind if you help me to complete it? please? thanks try this one. atcommand.c ACMD(dpt){ struct pet_data *pd; if(!sd->status.pet_id || !(pd=sd->pd)) { clif->message(fd, msg_txt(184)); return false; } if (!pd->pet_no_talk) { pd->pet_no_talk = 1; } else { pd->pet_no_talk = 0; } sprintf(atcmd_output, "%s pet talk.", (pd->pet_no_talk? "Disabled" : "Enabled")); clif->message(fd, atcmd_output); return 1;} pet.h pet_data int pet_no_talk : 1; pet.c clif_pet_emotion after nullpo_retv(pd); if(pd->pet_no_talk) { return; } If you want to mute pet when their master use @pettalk just add this code at ACMD(pettalk) if(pd->pet_no_talk) { return false; }
  4. I think this post should be posted in two weeks but yommy accidentally post it today. D:
  5. Dinze

    @dpt command

    change return 0 to return 1
  6. I think you are trying to use a packed client from kRO which can't be used for extracting packet keys. which client date did u use? 2013-08-07a thats odd I have run this on 2013-08-07a mostly. That packet id itself seems wrong which means there is something wrong with the encryption. Is it always showing error for same packet? Yeah its the same error everytime.
  7. Try to use a launcher. Search the forum for rocred or loki launcher.
  8. I tried it like a week ago when I saw your repo and it didn't work. Edit: I am getting a "No match found in Length Table for Packet 0x7f57".
  9. Dinze

    @dpt command

    Post the full code behind pet no talk. Just like @evilpuncker your problem is not in atcommand.c
  10. You can edit the src or increase the max level.
  11. Dinze

    Own POints

    if i add #OWNPOINTS what is the name of the Points? Own Points? how about i want to make it YourRO Points #YOURROPOINTS
  12. Dinze

    PK area

    Well I should have added more context. I kinda want to know what map is it, the one in the op.
  13. I tried it 10000 and it worked Edit: I tried it again with 100 and 1000. It worked but the chance is really low.
  14. if ( countitem( 501 ) < 10 || !countitem( 514 ) ){
×
×
  • Create New...

Important Information

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