Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. open ur client using hex editor....search for the original website that it redirect to you.. and change ALL the link to your custom website link... beside, this has been discussed before, a simple search would show you the answer....
  2. maybe it's in ur official ro grf ??? depend on your client read which GRF's loading screen ?
  3. ookay .. anyway ..both mirror link also work fine for me
  4. Duplicated Topic : http://rathena.org/board/topic/71708-old-izlude/
  5. did you noticed that there is mirror link in the first post ??? sometime the link work fine...just the author uploading new version...and have to get approve by staff team then only other member can download.
  6. OnPCKillEvent: set .@KillerAID,getcharid(3); <------------------------------------
  7. try this.. OnPcKillEvent: // Sumamos los puntos al matar a alguien if (.MapaActivado) { for (set .@c, 0; .@c < getarraysize(.mapas_pvp$); set .@c, .@c + 1) if (.mapas_pvp$[.@c] == strcharinfo(3) && attachrid(killedrid) ) if( BaseLevel >= 80 ) if( attachrid(.@KillerAID) ){ set #PuntosPvp,#PuntosPvp + 1; break; } if(#PuntosPvp==$Campeon){ dispbottom "BONUs! Has llegado a " + #PuntosPvp + " Puntos así que te mereces un peque?o premio. "; warp .mapa_bonus$,.x_bonus,.y_bonus; end; } } dispbottom "Has ganado un punto , ahora tienes " + #PuntosPvp + ". Sigue así."; end;
  8. it work fine for me... i use a character with level 103 killed a character with level 80 ....and i gain point... if i killed level 80 below character. ...i gain nothing...
  9. try this... OnPCKillEvent: set .@KillerAID,getcharid(3); if( attachrid(killedrid) ) if( BaseLevel >= 80 ) if( attachrid(.@KillerAID) ){ set #PuntosPvp,#PuntosPvp + 1; dispbottom "Gained 1 Point when killed Character Level 80 or Above."; } end;
  10. because i put the script inside the NPC script that he want to disable.. if i use disablenpc here....the NPC wont be able to show up again after WOE End...because the NPC is disabled...it's script wont run ... unless you put the script above as another NPCs then only it will work..
  11. it's provided in post#2 together trunk/npc/custom/jobmaster.txt
  12. put this inside the PVP Warper..... OnAgitStart: hideonnpc strnpcinfo(0); end; OnAgitEnd: hideoffnpc strnpcinfo(0); end; the NPC will be hided everytime WOE is started ...and auto unhide after WOE End.
  13. OnTBoxKilled: announce "The Treasure Chest has been found and destroyed by "+strcharinfo(0)+"!", bc_all; getitem 7227,1; stopnpctimer; end;
  14. in 1st post...you request to remvoe the monster ... so i have provide you the solution in post#2 the script will be cancelled and remove all the monster... in post#5 , you request the script to announce after 30minute when nobody found the treasure box... so i have provide you the solution in post#6 then in post#7 , you want the the never announce if anyone killed / found it and request to remove it. so i have provide you the solution in post#8 and now in post#9 , now you said you dont want to remove the announce for chest is found / killed ....and the announce for failed to locate the treasure box should be shown after 30minute ...( isnt that solution is provided in post#6 ?? ) if you want to keep the announce for chest is found / killed ...then just dont follow what i said in post#8 .... is there anything did i missed ?
  15. remove this... announce "The Treasure Chest has been found and destroyed by "+strcharinfo(0)+"!", bc_all;
  16. refer to previous post i made and edit.. announce "Event Cancelled and treasure box removed.",0;
  17. i believe most of us are using LUB instead of LUA ....beside LUB is more secured than LUA ....
  18. the clientinfo.xml is inside the GRF folder ... for your korean text problem ... make sure your client read the correct GRF ..configure it here data.ini make sure you are using the LUB files...not the lua files.... and put it inside the luafiles514 folder which is inside your GRF....
  19. you can still drop it ..... i just altered the table to store text instead of limited characters.....
  20. OnTimer60000: set @minute, @minute + 1; dispbottom "You played "+@minute+" minutes.";
  21. try change if ( countitem(getarg(0)) < getarg(1) ){ to if ( getd(getarg(0)) < getarg(1) ){ then....change.... delitem getarg(0),getarg(1); to set getd( getarg(0) ), getd( getarg(0) ) - getarg(1); then....change.... callsub DynamicShop,7720,250,20596,1,10; to callsub DynamicShop,"#CASHPOINTS",250,20596,1,10;
×
×
  • Create New...