evroshsama
Birisi mi Spawnlandı?
Merhabalar,
Elimde böyle bir kod var ancak "oyuncu2" tarafından"/call oyuncu1" yazdığımda "oyuncu1"'e mesaj gidiyor "oyuncu1" "/callac oyuncu2" yazdığında " send "Hiçbir çağrıyı kabul etmiyorsun!" to player" şuradaki mesajı "oyuncu1"'e gönderiyor sebebi nedir?
Kod:
options:
callPrefix: call
voiceChatCommand: /voicechat join call1 call1159357aass
variables:
command /call <offlineplayer>:
trigger:
if arg-1 is online:
set {_caller} to player
set {_receiver} to arg-1
send "%{_receiver}% çağrı aldı!" to {_receiver}
send "%{_receiver}% çağrı yaptı. Aramayı kabul ediyorsan %{option.callPrefix}% accept %{_caller}% Red ediyorsan %{option.callPrefix}% deny %{_caller}%" to {_receiver}
set {_lastCall.%{_caller}%} to {_receiver}
else:
send "Bu oyuncu çevrimiçi değil!" to {_caller}
command /callac <offlineplayer>:
trigger:
if {_lastCall.%player%} is not set:
send "Hiçbir çağrıyı kabul etmiyorsun!" to player
stop
if arg-1 is {_lastCall.%player%}:
send "Aramayı kabul ettin!" to player
execute player command "{option.voiceChatCommand}"
delete {_lastCall.%player%}
else:
send "Bu çağrıyı kabul edemezsin!" to player
command /callde <offlineplayer>:
trigger:
if {_lastCall.%player%} is not set:
send "Hiçbir çağrıyı reddetmiyorsun!" to player
stop
if arg-1 is {_lastCall.%player%}:
send "Arama reddedildi!" to player
delete {_lastCall.%player%}
else:
send "Bu çağrıyı reddedemezsin!" to player
Elimde böyle bir kod var ancak "oyuncu2" tarafından"/call oyuncu1" yazdığımda "oyuncu1"'e mesaj gidiyor "oyuncu1" "/callac oyuncu2" yazdığında " send "Hiçbir çağrıyı kabul etmiyorsun!" to player" şuradaki mesajı "oyuncu1"'e gönderiyor sebebi nedir?
