Quote:
Originally Posted by Mimas
ol4fff wollte mal Fragen ob es möglich wäre noch 3-5 häckchen zu setzten für die Skills die er einsetzten soll bei mir setzt dein bo immoment kein einzigen skill ein
|
Dazu bräuchte ich schon ein paar mehr Angaben, das ist ungefähr so als wenn ich zur Werkstatt gehe (ohne Auto) und die frage, was bei meinem Auto kaputt wäre.
Evtl. setzt du die falsche Auflösung ein oder nutzt Browser oder oder oder
Quote:
Originally Posted by cariocas
Hey Olaff i have one problem with my script.Select its not a problem the problem its skills cooldown.He enter in battle after select and press 3 when have 80+ rage and shor time after press sylph and broke my delphic its a way to increase this cool-down character and sylph skills?Change the SPACE place maybe?I try now.Thx u gr8.
|
It would not work, if I change the SPACE bar to another slot. The Problem is, that if sylphform is available, the space command interrupts ALL skills and goes first. I am sorry, the only thing you can do is to delete the SPACE command, so that your char is fighting without sylph form all fights.
Quote:
Originally Posted by ·!¦[·ZΞЦS™·]¦!·
das mit dem lebensbalken ist eine idee ;) Weil ich habe da so einen verdacht warum er den kampf hin und wieder nicht beendet. Ich glaube das er die Farbe, warum auch immer, genau in dem Moment auch auf der HG Insel findet und deshalb die kampf funktion nicht beendet.
EDIT: Ich glaube hab es, hab mir mal den pixelsearch von $tot geschnappt, farb wert geändert. und den counter mal auskommentiert. nun findet er ohne Problem ob der kampf fertig ist oder nicht.
Code:
$end_kampf = PixelSearch( 1418 + ($abstandx/2), 105 + ($abstandy/2), 1428 + ($abstandx/2), 115 + ($abstandy/2), 0x383838 )
natürlich habe ich den counter dann auch wieder mit rein.
Das ganze sieht nun so aus:
Code:
Func kampf()
;~ Kampf funktion
ConsoleWrite('Lädt Kampf')
$countdown = $countdown + 1
$search_kampf = PixelSearch( 515+($abstandx/2), 785+($abstandy/2), 980+($abstandx/2), 845+($abstandy/2), 0x14120E )
If IsArray($search_kampf) Then
;Send("{SPACE}")
Send("{3}")
Send("{2}")
Send("{1}")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$end_kampf = PixelSearch( 1418 + ($abstandx/2), 105 + ($abstandy/2), 1428 + ($abstandx/2), 115 + ($abstandy/2), 0x383838 )
If IsArray($end_kampf) Then
$vab = false
$countdown = 0
Endif
Elseif $countdown > 6 Then
;~ nicht kampf
$vab = false;
$countdown = 0
ConsoleWrite('Nicht im kampf');
EndIf
Return $vab;
EndFunc
|
Boah danke für die Arbeit :)
Sorry hatte die letzten Tage bissl woanders zu tun und zusätzlich leidet derzeit die Motivation das Spiel noch weiterzuspielen, bei der Cashgeilheit des Entwicklers.
Aber Deine Arbeit ist interessant und ich werde das Ganze mal die Tage überarbeiten und Deine Arbeit da mit einfließen lassen.
Danke dafür :)