Jump to content

pasok


Hades03

Recommended Posts


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

need ko hlp kasi yung skill ng soul linker yung Kaizel na gagamit sa woe pag namaty sila ma reresu panu yun gus2 ko hindi gumagana sa woe

and yung sa woe pag na break gus2 ko lalabs n name kung sinu naka break

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  414
  • Reputation:   102
  • Joined:  11/13/11
  • Last Seen:  

Please post a more informative and at least related to the topic, title.

db/skill_nocast_db.txt

// Forbidden Skills Database
//
// Structure of Database:
// SkillID,Flag
//
// Legend for 'Flag' field (bitmask):
//  1 = Cannot be used in normal maps
//  2 = Cannot be used in PvP maps (use this instead of 1 for PK-mode servers)
//  4 = Cannot be used in GvG maps
//  8 = Cannot be used in Battleground maps
//  16 = Cannot be cloned (clones will not copy this skill)
//  Restricted zones - they're configured by 'restricted <numbe' mapflag
//  32 = Cannot be used in zone 1 maps
//  64 = Cannot be used in zone 2 maps
//  128 = Cannot be used in zone 3 maps
//  256 = Cannot be used in zone 4 maps
//  512 = Cannot be used in zone 5 maps
//  1024 = Cannot be used in zone 6 maps
//  2048 = Cannot be used in zone 7 maps
//
// Example:
// 8,6 = Endure cannot be used in PvP and GvG maps (2+4)

<skill ID>,<Flag>

462,4 (Kaziel Skill ID, 4 (For GVG Maps)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

ty and yung sa emp pag na break lalabs name nun naka break

fail

i put this 462,4 //SL_KAIZEL

still fail

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  414
  • Reputation:   102
  • Joined:  11/13/11
  • Last Seen:  

npc/guild/agit_template.txt

// Respawn the Emperium, and display new owners.

sleep 500; // Slow down script execution slightly.

if( agitcheck() )

donpcevent "Agit#"+strnpcinfo(2)+"::OnStartArena";

sleep 7000;

announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by [" +strcharinfo(0) +"] of the [" + getguildName(.@GID) + "] guild.",bc_all|bc_woe;

end;

Regarding skill_nocast_db.txt, it works when WoE is on. If you don't want it to work in the castle maps at all times, put them in zones and flag them.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

Eurydice yung kaizel diba puede magamit pero pag nasa woe kahit naka kaizel mag aauto labas sya gets moh poh?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  414
  • Reputation:   102
  • Joined:  11/13/11
  • Last Seen:  

I get it. I'm not an idiot. Don't go all condescending on me just because you feel like it.

Make your own script.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

omg

kya nga kao nan d2 need ko hlp eh ganun?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.01
  • Content Count:  715
  • Reputation:   83
  • Joined:  01/05/12
  • Last Seen:  

what SVN are you using ? i knew rAthena have this line in status.c to stop kaizel skill from GvG maps .you can find this at 1133 to 1148

	if( sc && sc->data[sC_KAIZEL] && !map_flag_gvg(target->m) )
{ //flag&8 = disable Kaizel
	int time = skill_get_time2(SL_KAIZEL,sc->data[sC_KAIZEL]->val1);
	//Look for Osiris Card's bonus effect on the character and revive 100% or revive normally
	if ( target->type == BL_PC && BL_CAST(BL_PC,target)->special_state.restart_full_recover )
		status_revive(target, 100, 100);
	else
		status_revive(target, sc->data[sC_KAIZEL]->val2, 0);
	status_change_clear(target,0);
	clif_skill_nodamage(target,target,ALL_RESURRECTION,1,1);
	sc_start(target,status_skill2sc(PR_KYRIE),100,10,time);

	if( target->type == BL_MOB )
		((TBL_MOB*)target)->state.rebirth = 1;

	return hp+sp;
}

you can also try this :

Find this line below line 1133

if( sc && sc->data[sC_KAIZEL] && !map_flag_gvg(target->m) )

and change to this line

if( !(flag&8) && sc && sc->data[sC_KAIZEL] && !map_flag_gvg(target->m) )

and recompile it but i havent tryed this .maybe just try Eurydice said to you to add

462,4

to your db/skill_nocast_db.txt

Edited by Lelouch
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...