View Single Post
  #1  
Old 09-04-2001, 07:53 AM
ArmadeusWarlock ArmadeusWarlock is offline
Registered User
Join Date: Jun 2001
Posts: 373
ArmadeusWarlock is on a distinguished road
A little help...

Ok, this sounds really simple to do, but Im busy doing other things and I just cant seem to figure it out.

// NPC made by Reese (Events Team)
if (playerenters) {
}
if (playertouchsme) {
toweapons Wizard Spell Trade;
setstring spell0,0;
setstring spell1,0;
setstring spell2,0;
setstring spell3,0;
setstring spell4,0;
setstring spell5,0;
setstring spell6,0;
setstring spell7,0;
setstring spell8,0;
setstring spell9,0;
setstring spell10,0;
setstring spell11,0;
}
if(weaponfired){
set usingtrade;
timeout=0.01;
this.tx=playerx;
this.ty=playery;
}
if(usingtrade){
showimg 1,wepstuff.gif,playerx+1,playery-3; //Top Arrow
changeimgpart 1,0,0,16,15;
showimg 2,wepstuff.gif,playerx+1,playery-3; //Bottom Arrow
changeimgpart 2,17,0,16,15;
}
if(timeout){
playerx=this.tx;
playery=this.ty;
}
if(timeout&&keydown(a)){
unset usingtrade;
timeout=0;
}

If you need the image for it, I can post it. My problem is with freezing, I tried about 12938471329847219471293749 different things to freeze and it doesnt work. Freezeplayer wont work for some odd reason from how I used it. Please help me solve this, Im busy with other things and I dont have much time

Reply With Quote