Jump to content
  • 0

Killable when you wear specific item


dize11

Question


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  93
  • Reputation:   0
  • Joined:  01/30/12
  • Last Seen:  

Hi to all i have an items when u wear it it turns into another set of pallete ( STYLIST PALLETES) but i want to know if its possible when i wear this items i can turn it a killable without @pvp on?! And its works into simple script or i need to edit something?! Thanks!

post-1943-0-36262600-1375123023_thumb.jpg

Edited by dize11
Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

.......{},{ atcommand "@killable"; },{ atcommand "@killable"; }

or i think you also also try the karma system...but the karma system required both player to have negative karma in order to be able to hit each others...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   2
  • Joined:  09/25/12
  • Last Seen:  

You could make the item use the @killer command. But they will be able to kill anyone, including GMs.

Edited by AngelRO
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Hi to all i have an items when u wear it it turns into another set of pallete ( STYLIST PALLETES) but i want to know if its possible when i wear this items i can turn it a killable without @pvp on?! And its works into simple script or i need to edit something?! Thanks!

 

What skin are you using here... I really like it.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  93
  • Reputation:   0
  • Joined:  01/30/12
  • Last Seen:  

Only Player vs Player



Hi to all i have an items when u wear it it turns into another set of pallete ( STYLIST PALLETES) but i want to know if its possible when i wear this items i can turn it a killable without @pvp on?! And its works into simple script or i need to edit something?! Thanks!

 

What skin are you using here... I really like it.

That skin is from Kamishi Palletes i bought them for good price!! 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  93
  • Reputation:   0
  • Joined:  01/30/12
  • Last Seen:  

What im planning is to make this elemental races (PALLETES) when they warp into another races town they will able to be killable its the same Emistry?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   2
  • Joined:  09/25/12
  • Last Seen:  

You can use OnPCLoadMapEvent (on maps with loadevent), and make the script check if the player is using an elemental palette.

 

Something like:

 

prontera,50,50,0    script    enableracepvp    -1,{

OnPCLoadMapEvent:

    if(getlook(7) == 200) {  //change 200 for your elemental race palette    
        atcommand "@killable";    
        end;
    }

}

prontera	mapflag	loadevent

 

 

But you have to figure out a way to reuse the command to disable the pvp when the player leaves the map.
 

I didn't test the script.

Edited by AngelRO
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  390
  • Reputation:   27
  • Joined:  07/12/12
  • Last Seen:  

You can use OnPCLoadMapEvent (on maps with loadevent), and make the script check if the player is using an elemental palette.

 

Something like:

 

prontera,50,50,0    script    enableracepvp    -1,{

OnPCLoadMapEvent:

    if(getlook(7) == 200) {  //change 200 for your elemental race palette    
        atcommand "@killable";    
        end;
    }

}

prontera	mapflag	loadevent

 

 

But you have to figure out a way to reuse the command to disable the pvp when the player leaves the map.

 

I didn't test the script.

 

 

i like this OnPCLoad command, but what if i don't have a race system, could you make a script that has a list of items. kinda like this

 

prontera,50,50,0    script    enableracepvp    -1,{

OnPCLoadMapEvent:

    if(itemequip)
       item,123
       item,456
       item,678
        end;
    }

}

prontera	mapflag	loadevent

somethign like this ^

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