Jump to content

Kawita

Members
  • Posts

    13
  • Joined

  • Last visited

About Kawita

  • Birthday 04/16/2021

Profile Information

  • Gender
    Female
  • Location
    Uruguay
  • Interests
    Mi interes está en aprotar contenido y obtener ayuda cuando lo necesito.

Kawita's Achievements

Santa Poring

Santa Poring (3/15)

  • Collaborator
  • Dedicated
  • One Month Later
  • Week One Done
  • First Post

Recent Badges

0

Reputation

  1. How do I get a script or function to release a mob right at my coordinate and after 10 seconds if I don't eliminate it, the mob simply disappears? I tried using getmapxy but no luck
  2. I'm sorry, before consulting, check the file, obviously I skipped it and didn't see it and I always take it as a last resort to ask questions here, thank you very much!
  3. hello good! I am creating a race system when you start the game for the first time, when you select a race it gives you a series of items and other characteristics, but I would like one of those items in particular to equip you directly without going to the inventory, that is, in In this case, they are some wings that I would like to equip directly without having to go to the inventory and double click on them.
  4. Kawita

    SPR Conview

    Honestly it doesn't allow me to download it, thank you very much!
  5. Kawita

    SPR Conview

    In fact, I already checked all the sites before asking you the question, that link you provide is broken
  6. Kawita

    SPR Conview

    Hello, I am in an intense search for the spr conview program but no matter how hard I try I cannot find it on the internet like before, the divinero line does not work, does anyone have it that can share it?
  7. It is possible to call a function for each attack that the character performs, what I basically want to achieve is through a function or in the following way: When attacking the character consumes 1 usable item for each hit made, I would like to know if it is possible without modifying the SRC
  8. I don't know if it is the right section for this topic, but as the title says, the freeze effect stopped working on the entire server, whether cards or weapons, when using the bonus bonus2 bResEff,Eff_Freeze,10000; which is supposed to provide 100% protection against the freeze effect, it doesn't work, I tried lowering the percentage but nothing, it doesn't even work on original ro items. I tried reviewing the src pc.c file but honestly that file was never modified and is original, then I compiled just in case but nothing, the emulator does not present any errors of any kind but the effect does not work in any percentage. How can I solve so that the effect returns to normal whether in personalized and original items?
  9. I have the same problem, can you send me the contact of the developer who helped you with this problem?
  10. I'm trying to create a loop for an NPC that counts down from 10 to 0 every second, and when it reaches 0 the loop stops and performs an action like hiding the npc, the problem I'm having is that it doesn't stop at 0 and when clicking on the npc the numbers get out of control, I just want the npc to count from 10 backwards to 0 and that when it reaches 0 the npc hides and on the other hand clicking on the npc does not affect or alter his account In the loop guild_vs1-1,50,49,3 script Valkyrie 811 ,{ query_sql "UPDATE `valkyrie` SET `puntos` = 10"; OnInit: query_sql "SELECT `puntos` FROM `valkyrie`",.@puntos$; do { waitingroom "HP: "+.@puntos$+"",0; query_sql "UPDATE `valkyrie` SET `puntos` = `puntos` - 1"; sleep 1000; } while(1); disablenpc "Valkyrie"; end; }
  11. thank you very much it was very useful
  12. As the title says, I need to create a gettimetick that lasts until midnight (00:00hs). This code is for a daily reward, so if a user logs in at 10:32 am, he is given his reward for today but until 00:00 pm you cannot claim the reward for the next day.
×
×
  • Create New...