Jump to content

luizragna

Members
  • Posts

    107
  • Joined

  • Last visited

  • Days Won

    2

luizragna last won the day on January 2 2020

luizragna had the most liked content!

2 Followers

Profile Information

  • Gender
    Male
  • Location
    SP
  • Server
    OP

Recent Profile Visitors

2827 profile views

luizragna's Achievements

Poring

Poring (1/15)

  • Reacting Well
  • First Post
  • Collaborator
  • Week One Done
  • One Month Later

Recent Badges

27

Reputation

4

Community Answers

  1. Talvez o problema seja falta de quebra de linhas. Aonde está: switch (@Tema) { case 14: soundeffectall "assassin_of_sunset.wav",0,24,@mapa$,0,0,50,50; break; case 12: soundeffectall "in_to_the_abyss.wav",0,24,@mapa$,0,0,50,50; break; case 11: soundeffectall "dont_forget_me_not.wav",0,24,@mapa$,0,0,50,50; break; case 7: soundeffectall "ring_of_nibelungen.wav",0,24,@mapa$,0,0,50,50; break; case 5: soundeffectall "bragis_poem.wav",0,24,@mapa$,0,0,50,50; break; case 2: soundeffectall "chaos_of_eternity.wav",0,24,@mapa$,0,0,50,50; break; default: soundeffectall @Tema$,0,24,@mapa$,0,0,50,50; break; } Tente trocar por: switch (@Tema) { case 14: soundeffectall "assassin_of_sunset.wav",0,24,@mapa$,0,0,50,50; break; case 12: soundeffectall "in_to_the_abyss.wav",0,24,@mapa$,0,0,50,50; break; case 11: soundeffectall "dont_forget_me_not.wav",0,24,@mapa$,0,0,50,50; break; case 7: soundeffectall "ring_of_nibelungen.wav",0,24,@mapa$,0,0,50,50; break; case 5: soundeffectall "bragis_poem.wav",0,24,@mapa$,0,0,50,50; break; case 2: soundeffectall "chaos_of_eternity.wav",0,24,@mapa$,0,0,50,50; break; default: soundeffectall @Tema$,0,24,@mapa$,0,0,50,50; break; }
  2. @Barterwood i changed the syntax, try replace: npcidentity.lua
  3. Hello guys. It's possible use the script command specialeffect in rathena?
  4. Hello guys. How can i disable mob target (like a clone)?
  5. Try this a simple example: prontera,151,187,4 script TesterIP 88,{ getpartymember getcharid(1),2; .@count = $@partymembercount; query_sql "SELECT `last_ip` FROM `login` WHERE `account_id` = "+$@partymemberaid[0], .@ip1$; query_sql "SELECT `last_ip` FROM `login` WHERE `account_id` = "+$@partymemberaid[1], .@ip2$; query_sql "SELECT `last_ip` FROM `login` WHERE `account_id` = "+$@partymemberaid[2], .@ip3$; //After executing the code above,IPs of respective members are stored in .@ip1$, .@ip2$ and .@ip3$ //Showing them: mes .@ip1$; mes .@ip2$; mes .@ip3$; close; }
  6. The custom label OnAttackMob don't trigger... The script: - script OnAttackMob -1,{ OnAttackMob: mes "ID: ^0000FF"+ mobid +"^000000"; mes "Nome: ^0000FF"+ mobnome$ +"^000000"; mes "Level: ^0000FF"+ moblevel +"^000000"; close; } mob.cpp case BL_PC: { struct map_session_data *sd = (TBL_PC*)src; char_id = sd->status.char_id; if( damage ) md->attacked_id = src->id; //Variáveis Especiais [SlexFire] pc_setglobalreg(sd, add_str("mobid"), md->mob_id); pc_setglobalreg_str(sd, add_str("mobnome$"), md->name); pc_setglobalreg(sd, add_str("moblevel"), md->level); //Slexfire OnAttackMob npc_script_event(sd, NPCE_ATTACKMOB); //<--- Trigger break; } npc.cpp case NPCE_ATTACKMOB: //OnAttackMob return script_config.attackmob_event_name; npc.hpp NPCE_ATTACKMOB, //OnAttackMob script.cpp "OnAttackMob", script.hpp const char *attackmob_event_name; //OnAttackMob
  7. Provavelmente é na hora de diffar o hexed.
  8. In the some cases, the hercules uses close how end. Paste a print of the error in the map-server to i see the line of the problem.
  9. Do you can show your script?
  10. @Tokei It would be better if don't need to make modifications to the source. But that already helps. Thank You ?
  11. Hello guys. How can i do it the right way? prontera,100,100,4 script Duplicator 84,{ prontera,162,193,4 duplicate(Healer) Healer#prt 909 //<----- }
  12. Hello guys. I'm creating a custom archer mob and want add this arrow sprite:
×
×
  • Create New...