Jump to content
  • 0

Secret Script through PM


addictro

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

Is there anyone here who has a script for like a "secret buffer/healer"?

It's like a macro where you will pm something like npc:buff then by keyword will give you different kind of buffs?

Is it possible to add a macro/keyword there that will give god items stats/attributes? For example I PM "megs" to npc:buff, is there a script where I can have STR+40 & DEX+ 15?

Thank you in advance & hope someone can help me. Thanks again!

Link to comment
Share on other sites

16 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  505
  • Reputation:   126
  • Joined:  04/04/16
  • Last Seen:  

If you know some basic scripting, you can do it using OnWhisperGlobal

Sample

-	script	buffs	-1,{
OnWhisperGlobal:
	if (@whispervar0$ == "bless")
		skilleffect 34,0; sc_start SC_BLESSING,360000,10;
	end;
}

 

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

1 hour ago, Technoken said:

If you know some basic scripting, you can do it using OnWhisperGlobal

Sample


-	script	buffs	-1,{
OnWhisperGlobal:
	if (@whispervar0$ == "bless")
		skilleffect 34,0; sc_start SC_BLESSING,360000,10;
	end;
}

 

Hello. Thank you for your reply. But I don't want buffs such as Blessing or Increase Agility upon "OnWhisperGlobal" What I want is Item Script effects such as Megingjard's +40 STR, +15 Dex, such as Maya Purple card that detects hidden enemies. I hope I made it clear. Thanks, & hoping for another reply.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  505
  • Reputation:   126
  • Joined:  04/04/16
  • Last Seen:  

It was just an example. Idk if there's a script that checks item bonuses, that way it could easily be done..

From what I see it, it needs to be done manually since you want multiple effects (item bonuses) to be applied which would consume too much time.

That's why I said

1 hour ago, Technoken said:

If you know some basic scripting, you can do it using OnWhisperGlobal

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  912
  • Reputation:   166
  • Joined:  11/27/14
  • Last Seen:  

@addictroWe already give you the idea you only need to do is to add some trick on that script given above . insted of buff what if a stats upgrade like cooking foods :3 . Please dont look just on script look for your idea .

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

I don't really want to make this kind of script since I can only see that it will be use for a bad thing. /hmm 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  106
  • Reputation:   30
  • Joined:  04/03/17
  • Last Seen:  

Quote

-	script	buffs	-1,{
OnWhisperGlobal:
	if (@whispervar0$ == "bless")
		sc_start2 SC_ITEMSCRIPT,60000,4198,SI_ARMOR_PROPERTY;
                sc_start2 SC_ITEMSCRIPT,60000,2629,SI_ARMOR_PROPERTY;
	end;
}

Script is not tested

 

sc_start2 SC_ITEMSCRIPT Works with cards, At eq I do not know.

 

60000 is 1Min

4198 is Maya P Card

2629 is Megingjard 

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

-	script	buffs	-1,{
OnWhisperGlobal:
	switch(@whispervar0$) {
	
	case "blessing":
		sc_start SC_BLESSING,360000,10;
		break;
	case "maya":	
		sc_start SC_INTRAVISION,360000,0;
		break;

	}

}

Could be something like this.

Edited by Promise
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

5 hours ago, Kinx said:

Script is not tested

 

sc_start2 SC_ITEMSCRIPT Works with cards, At eq I do not know.

 

60000 is 1Min

4198 is Maya P Card

2629 is Megingjard 

 

Will check it out, thanks a lot!

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

3 hours ago, Promise said:

-	script	buffs	-1,{
OnWhisperGlobal:
	switch(@whispervar0$) {
	
	case "blessing":
		sc_start SC_BLESSING,360000,10;
		break;
	case "maya":	
		sc_start SC_INTRAVISION,360000,0;
		break;

	}

}

Could be something like this.

Hello. Will check this out. Thanks a lot! I think this will work, but how about MVP/Boss cards/items that doesnt have effects? Is there a way where I can pm something that can give me stats? 

For example I'll pm npc:buff megs; Can I have +40 STR? Because it does not have a statues such as Intravision. Thanks a lot!

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

7 hours ago, Technoken said:

It was just an example. Idk if there's a script that checks item bonuses, that way it could easily be done..

From what I see it, it needs to be done manually since you want multiple effects (item bonuses) to be applied which would consume too much time.

That's why I said

 

Unfortunately I do not know basic scripting. If it is for item bonuses such as Megingjard's +40 STR/+15 DEX, should I still use sc_start2 (I don"t know what sc_start2 means) and will SC_ITEMSCRIPT will work with equips..

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

 

-	script	buffs	-1,{
OnWhisperGlobal:
	switch(@whispervar0$) {
		case "blessing":
			sc_start SC_BLESSING,360000,10;
			break;
		case "maya":	
			sc_start SC_INTRAVISION,360000,0;
			break;
		case "stats":
			sc_start SC_FOOD_LUK_CASH,1800000,40;
			sc_start SC_FOOD_DEX_CASH,1800000,40;
			sc_start SC_FOOD_STR_CASH,1800000,40;
			sc_start SC_FOOD_VIT_CASH,1800000,40;
			sc_start SC_FOOD_INT_CASH,1800000,40;
		break;

	}

}

 

Im not sure if it works, but should be something like this.

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

31 minutes ago, Promise said:

 


-	script	buffs	-1,{
OnWhisperGlobal:
	switch(@whispervar0$) {
		case "blessing":
			sc_start SC_BLESSING,360000,10;
			break;
		case "maya":	
			sc_start SC_INTRAVISION,360000,0;
			break;
		case "stats":
			sc_start SC_FOOD_LUK_CASH,1800000,40;
			sc_start SC_FOOD_DEX_CASH,1800000,40;
			sc_start SC_FOOD_STR_CASH,1800000,40;
			sc_start SC_FOOD_VIT_CASH,1800000,40;
			sc_start SC_FOOD_INT_CASH,1800000,40;
		break;

	}

}

 

Im not sure if it works, but should be something like this.

 

Hello. Does it give +40 to all stats? Please correct me if I'm wrong.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

38 minutes ago, addictro said:

Hello. Does it give +40 to all stats? Please correct me if I'm wrong.

It does, test it first 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

40 minutes ago, addictro said:

Hello. Does it give +40 to all stats? Please correct me if I'm wrong.

Yes it does.

Depends on what say on the whisp.

 

If you say stats, it gives you allstats +40, if you want to edit it, just delete some stats lines.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  505
  • Reputation:   126
  • Joined:  04/04/16
  • Last Seen:  

I thought you were saying to automatically apply the item script when you whipser the item name. In this case, each item needs to be applied on the script manually. Unless there's a script that checks specific item bonuses the item has.

But if you only need few of them, you can create a list and post it here. There are lot's of members who're willing to help you accomplish that.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  12/24/12
  • Last Seen:  

9 hours ago, Technoken said:

I thought you were saying to automatically apply the item script when you whipser the item name. In this case, each item needs to be applied on the script manually. Unless there's a script that checks specific item bonuses the item has.

But if you only need few of them, you can create a list and post it here. There are lot's of members who're willing to help you accomplish that.

That would be great! 

Can I have a script for Megingjard, Brisingamen, Spiritual Tunic, Gloom Under Night Card? Thanatos Card?

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
Answer this question...

×   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...