Was habt ihr gerade in eurer Zwischenablage?

Zitat von EbayRelevanceAd
1400,00 €
Feuerbestattung zum Komplettpreis inkl. Grabstätte


ausm ironietag thread ^^
 
8788293584

Oh mann, wieso hab ich eigentlich ständig irgendwelche Nummern in der Zwischenablage? Bin doch keine diese billigen Nummern *argh* :-?
 
Mit dieser XML-Datei sind anscheinend keine Style-Informationen verknüpft. Nachfolgend wird die Baum-Ansicht des Dokuments angezeigt.
 
action newbox_act //attach this action to the box
{
while(!plBiped01_entity)
{
wait(1);
}
//wait till player exists
while(1)
{
//if the player is nearer than 80 quants and key e is pressed:
if(vec_dist(my.x,plBiped01_entity.x)<80 && key_e)
{
if(carry_state == 0) //if the player doesnt carry something
{
my.carried = on;
carry_state = 1;
plBiped01_entity.cookie = newbox_act_cookies; // or = strawberry_cookies;
}
else
{
my.carried = off;
}
}
if(my.carried == on)
{
my.x = camera.x + carry_dist * cos(camera.pan);
my.y = camera.y + carry_dist * sin(camera.pan);
}
if(my.carried == off && carry_state == 1)
{
vec_set(temp,my.x);
temp.z -= 1000;
trace_mode = ignore_me + ignore_passable + use_box;
trace(my.x,temp);
vec_set(my.x,target);
my.z += 10; // change that number until the box is on desired height
carry_state = 0;
plBiped01_entity.cookie = 0;
}
wait(1);
}
}