Jump to content

DelghLay

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DelghLay's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. yeah (2017/05 update), i don know why the graphical effect crash the game
  2. Hi everyone, when i use Rebellion's Fire Rain skill my client crashes, i'm using 2015-11-04aRagexe.exe and nemo patcher, also i downloaded Rebellion Skill and Sprite.zip and extracted these file in my data folder, but this error keeps appearing when i cast it, additionally if i disable effects (off) this error doesn't show, but with effects on, appears immediately. What would i do?
  3. Doesn't react with my answers (yes, i've counted properly xd), also i've tested disguiser but this work 100%, i dont know Fixed, Thanks you sotf, you're great
  4. Thanks for replying, i changed this: setarray .monster, PORING, DROPS, MARIN, POPORING; for this: setarray .monster, 1002, 1113, 1242, 1031; Now the script runs without errors, but the npc does nothing with my answers (mob number quantity)
  5. Hello everyone, my problem is: I tried put and test Emistry's Counting Game v 1.2 in my rAthena, but i got this error, i don't know if this a PCRE problem or a script error (i'm using Visual Studio C++ 2017 professional for compiling, OS: Windows 7 x64). Thanks.
  6. Thank you so much Emistry, both scripts works perfectly
  7. Thanks for the feedback, i've fixed player time attacht problem (i think), but i cant solve this one, im so clumsy with variables and arrays, sorry
  8. Can you show me with a little example?, i've read the docs but i cant understand how works this thing
  9. Hello everyone, well my problem is i can't attach player in this line: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { I've tried so many ways but doesn't work. Thanks. //=================== Announcer ===================== - script Announcerm -1,{ OnMinute35: killmonster "mine_evt.gat","All"; announce "xxxxxxxxxx.",bc_all,0xAA42F9; sleep 4000; announce "xxxxxxxxxxxx.",bc_all,0xAA42F9; enablenpc "Shadow Miner"; sleep 4000; announce "xxxxxxxxxx.",bc_all,0xAA42F9; sleep 4000; announce "xxxxxxxxx.",bc_all,0xAA42F9; sleep 60000; announce "xxxxxxxxxx.",bc_all,0xAA42F9; disablenpc "Shadow Miner"; if(getmapusers("mine_evt") == 0) { disablenpc "Minery"; disablenpc "crystaltimer"; announce "xxxxxxxxxxxxx.",bc_all,0xAA42F9; end; } donpcevent "Minery::OnEncen"; end; OnInit: disablenpc "Minery"; disablenpc "Shadow Miner"; } //============================= Warper ===================================== prontera,147,163,6 script Shadow Miner 1169,{ mes "[^AA42F9Fiebre del Mineral^000000]"; mes "xxxxxxxxxxx:"; menu "XXX.",L_gomine, "YYYY.",L_nogo; L_gomine: mes "xxxxxxxxx."; specialeffect2 35; sleep2 100; specialeffect2 6; sleep2 1200; specialeffect2 71; specialeffect2 389; specialeffect2 36; specialeffect2 389; sleep2 825; warp "mine_evt",98,45; close; L_nogo: mes "xxxxxxxxxxx."; close; } //==================================================================== - script Minery -1,{ OnEncen: mapannounce "mine_evt","Shadow Miner: xxxxxxxx.",bc_all,0xAA42F9; sleep 6000; mapannounce "mine_evt","Shadow Miner: xxxxxxx.",bc_all,0xAA42F9; sleep 6000; mapannounce "mine_evt","Shadow Miner: xxxxxxx.",bc_all,0xAA42F9; sleep 10000; mapannounce "mine_evt","Shadow Miner: xxxxxxx.",bc_all,0xAA42F9; sleep 10000; mapannounce "mine_evt","Shadow Miner: xxxxxxx.",bc_all,0xAA42F9; sleep 6000; goto L_Comt; end; L_Comt: if(getmapusers("mine_evt") == 0) goto L_Noth; if(getmapusers("mine_evt") >= 1) { mapannounce "mine_evt","Shadow Miner: xxxxx",bc_all,0xAA42F9; sleep 2000; mapannounce "mine_evt","Shadow Miner: 5",bc_all,0xAA42F9; sleep 1000; mapannounce "mine_evt","Shadow Miner: 4",bc_all,0xAA42F9; sleep 1000; mapannounce "mine_evt","Shadow Miner: 3",bc_all,0xAA42F9; sleep 1000; mapannounce "mine_evt","Shadow Miner: 2",bc_all,0xAA42F9; sleep 1000; mapannounce "mine_evt","Shadow Miner: 1",bc_all,0xAA42F9; sleep 1000; mapannounce "mine_evt","Shadow Miner: Go!.",bc_all,0xAA42F9; playBGMall "mining"; donpcevent "crystalsummoner::OnSumCr"; donpcevent "crystaltimer::OnTierTm"; end; } L_Noth: disablenpc "Minery"; killmonster "mine_evt.gat","All"; end; } //================= NPC TIMER ====================== - script crystaltimer -1,{ OnTierTm: initnpctimer; end; OnTimer1000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer10000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer20000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer30000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer40000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer50000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer60000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer70000: if (strcharinfo(3) == "mine_evt" && getequipid(EQI_COSTUME_HEAD_TOP) == 33008 && getequipid(EQI_HAND_R) == 33007) { end; } else { message strcharinfo(0),"You will be kick out for not complying with the rules of the event: use of equipment."; sleep2 3000; warp "prontera.gat",155,184; end; } OnTimer80000: mapannounce "Shadow Miner: Se acabo jejeje, los devolvere a Prontera",bc_all,0xAA42F9; killmonster "mine_evt.gat","All"; end; OnTimer83500: mapwarp "mine_evt.gat","prontera.gat",155,184; disablenpc "Minery"; disablenpc "Shadow Miner"; stopnpctimer; setnpctimer 0; disablenpc "crystaltimer"; end; } //================= Crystal Respawn ====================== - script crystalsummoner -1,{ OnSumCr: if(getmapusers("mine_evt") == 0) goto L_2Nada; monster "mine_evt.gat",0,0,"Gold Node",3512,80,"crystalbrek::OnCrystalKilled"; monster "mine_evt.gat",0,0,"Diamantinum Node",3511,5,"crystalbrek2::OnCrystalKilled";end; L_2Nada: disablenpc "Minery"; killmonster "mine_evt.gat","All"; end; } //================== Crystal 1 ====================== - script crystalbrek -1,{ OnCrystalKilled: getitem 969,10; end; } //================== Crystal 2 ====================== - script crystalbrek2 -1,{ OnCrystalKilled: getitem 33005,1; end; } //================= Mapflags ======================= mine_evt mapflag nowarp mine_evt mapflag nowarpto mine_evt mapflag noteleport mine_evt mapflag nosave mine_evt mapflag nomemo mine_evt mapflag nobranch mine_evt mapflag noloot mine_evt mapflag noskill mine_evt mapflag nopenalty mine_evt mapflag noreturn mine_evt mapflag pvp off
×
×
  • Create New...