Ok, so for Kriag I am going to have the beggining where you pick your Gender, heres what I have so far. Female:
// NPC made by Benzy
if (created){
message Press me if you are a Female!
}
if (leftmousebutton) {
setgender female;
followplayer;
}
if (playertouchsme){
[B]?????????[/B]
} Male:
// NPC made by Benzy
if (created){
message Press me if you are a Male!
}
if (leftmousebutton) {
setgender male;
followplayer;
}
if (playertouchsme){
[B]?????????[/B]
}
At the ??? I need it where when the player touches the block it makes the player warp to onlinestartlocal.nw! HELP!
[QUOTE=Kondie;77185]
Obviously not enough.
Benzy, followplayer is an offline command. Learn to use showimg instead, as it’s a lot more flexible anyways.
[/QUOTE]
Ganis are more effective in my opinion, you can do special shit to it.
Unless you just want a stationary, animation-less image following you.
That’s where you’re wrong, Yenairo. You could make a gif image. But, I agree, showani would be more effective.
Here’s the correct documentation for showani in case you want to try Benzy.
showani index,x,y,direction,animation,params; shows an ani (graal animation shop file *.gani) at the given position
Here’s an example.
if (playerenters){
showani 500,x,y,2,idle,;
setcharprop #8,#8;
setcharprop #3,#3;
}