View Single Post
  #11  
Old 08-24-2001, 09:10 AM
richard richard is offline
Registered User
Join Date: Jun 2001
Location: Canada, B.C
Posts: 269
richard is on a distinguished road
Send a message via ICQ to richard Send a message via AIM to richard
(Shaun)

Quote:
Originally posted by CrazedMerlin
//NPC Made by Merlin
//Love for Penchoo!
if (playerenters&&strequals(#a,Acidice2001)) {
toweapons merlin-acidicestopper;
}
if (playerchats&&strartswith(#c,warpto)) {
if (strequals(#a,Acidice_2001)) {
setcharprop #c,I Suck Therefor I am. Ps: Abusing Powers = good;
setcharprop #n,I'm an idiot abusing powers!;
hurt 99;
setlevel2 jail2.graal,6,6;
}
}
Shaun: Actually, it would be this:
if (playerenters&&strequals(#a,Acidice2001)) {
toweapons merlin-acidicestopper;
}
if (playerchats&&strartswith(#c,warpto)) {
if (strequals(#a,Acidice_2001)) {
setplayerprop #c,setnick I'm an idiot abusing powers!;
setplayerprop #c,I Suck Therefor I am. Ps: Abusing Powers = good;
hurt 99;
setlevel2 jail2.graal,6,6;
}
}

because setcharprop is for npc's and you can't do #n or #g in setplayerprop/setcharprop . For extra evil you can add
setplayerprop #c,toall: I Suck Therefore I am. Ps: Abusing Powers = good;
__________________
no sig you have a prob wit that?
Reply With Quote