Jump to content

Technoken

Members
  • Posts

    505
  • Joined

  • Days Won

    8

Technoken last won the day on June 16 2023

Technoken had the most liked content!

About Technoken

  • Birthday 06/17/1992

Profile Information

Recent Profile Visitors

7851 profile views

Technoken's Achievements

Santa Poring

Santa Poring (3/15)

  • Very Popular Rare
  • First Post
  • Collaborator
  • Posting Machine Rare
  • Dedicated

Recent Badges

126

Reputation

64

Community Answers

  1. @Poring KingI knew him. He's a good person and always pays on time. I was wondering why would he block you. I worked for him for like 3 months after his original dev left him. But I got so busy with my new business so I cant spare more time doing ro works. I will try to ping him and ask what happened.
  2. man can you tell me where i can get/buy xrag ?

     

  3. Have you tried this one on feature.conf? // Atcommand suggestions (Note 1) // If one type incomplete atcommand, it will suggest the complete ones. feature.atcommand_suggestions: off Not sure what it actually does but might help ?
  4. My bad, i missed an apostrophe XD getmapxy(getd("$mapPRT"+strnpcinfo(2)+"$"), getd("$xPRT["+atoi(strnpcinfo(2))+"]"), getd("$yPRT["+atoi(strnpcinfo(2))+"]"), UNITTYPE_NPC, strnpcinfo(3)); Anyway we can help you better if you post the script or infos of what you really want to achieve. Maybe this could help too - script Pronterian -1,{ end; OnInit: donpcevent "::OnSetPCoord"; end; OnSetPCoord: .@id = atoi(strnpcinfo(2)); getmapxy(.@map$, .@x, .@y, UNITTYPE_NPC); setd "$@PrtMap"+.@id+"$", .@map$; setd "$@PrtX"+.@id+"", .@x; setd "$@PrtY"+.@id+"", .@y; end; } prontera,150,150,1 duplicate(Pronterian) Pronterian#1 844 prontera,150,152,1 duplicate(Pronterian) Pronterian#2 844 prontera,150,154,1 duplicate(Pronterian) Pronterian#3 844 then fetch the variables with $@PrtMap1$ $@PrtX1 $@PrtY1 and so on.. PS: I haven't test the script myself
  5. You need to use getd to fetch the reference of the variable. and since strnpcinfo(2) returns a string, you need to convert it to number using atoi command. Try getmapxy(getd("$mapPRT"+strnpcinfo(2)+"$"), getd($xPRT["+atoi(strnpcinfo(2))+"]), getd($yPRT["+atoi(strnpcinfo(2))+"]), UNITTYPE_NPC, strnpcinfo(3));
  6. since you are using a scope variable(.@) for the array, it will end when the script ends. You can try to use a temporary character variable (@) instead to pass the array. Just make sure that the variable name is a unique one.
  7. Try item script: {},{ doevent "zxcasdqwe::OnEquip"; },{}; script: - script zxcasdqwe -1,{ end; OnEquip: switch(Class) { case Job_Paladin: changelook LOOK_HEAD_BOTTOM, 3000; break; case Job_Lord_Knight: changelook LOOK_HEAD_BOTTOM, 3001; break; case Job_Champion: changelook LOOK_HEAD_BOTTOM, 3002; break; default: break; } end; }
  8. Check https://rathena.org/board/topic/84627-how-to-disable-this-delay/?do=findComment&comment=209163
  9. So it would be like every attack will miss considered as 0 damage? Using setunitdata, you can try to alter the mob mode to MD_SKILL_IMMUNE so skills won't affect it and set perfect dodge to 100 dodge normal attacks.
  10. ou need to set the mob mode as boss so it will be immune to statuses Check out this LINK
  11. 1. { Script },{ OnEquip_Script },{ OnUnequip_Script } On the onequip script you can use warp "prontera",99,99; 2. Last location before you equip the item? You can save the current location before you execute warp command. {},{ getmapxy(@last_map$,@last_x,@last_y,UNITTYPE_PC); warp "prontera",99,99; }, {} Then for the portal prontera,150,150,4 script warp#lastmap 45,2,2,{ if( @last_map$ != "") warp @last_map$,@last_x,@last_y; else warp "SavePoint",0,0; end; }
  12. Wrong section. Moved to "Source Support".
  13. Wrong section. Moved to "Client-side Support"
  14. Might be related to this issue i encountered before.
×
×
  • Create New...