• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Ctrl + V

Status
Not open for further replies.
function showMap() {
$.ajax({
type: "POST", url: "map.php", data: "action=load",
complete: function(data){
var data = data.responseText;
$("#load_map").html(data);

}
});

}

o,0
 
[PL]Nie polecam Komputronika, bo tak w chuja tam lecą, że szok! Chciałem kupić RAMy do komputera to kurwa 3 dni chodziłem tam i się nie doczekałem, bo.."dostarczyli nam zły model" - tak gadali.
Następnie udałem się do sklepu Arest.pl i tam nawet 2min nie minęły i miałem RAMy w ręku..[/PL]

Tam tylko wybieram czesci, bo maja ladny konfigurator :)

CTRL+V said:
FAIL: Sorry, your video card does not meet this minimum requirement.
Video Card Features - Minimum attributes of your Video Card

Video RAM: Required - 256 MB , You have - 295 MB
Video Card 3D Acceleration: Required - Yes , You have - Yes
Video HW Transform & Lighting: Required - Yes , You have - Yes
Vertex Shader Ver.: Required - 3.0 , You have - 4.0
Pixel Shader Ver.: Required - 3.0 , You have - 4.0
^ :(
 
mhmm heres what i had copyed ;p


@up i notice you had difficulty so ill explain how to do it.

Heres all you were really missing.
Code:
function doPlayerAddSummon(cid, name, pos)  
    local MyCreature = doSummonCreature(name, pos)  
    doConvinceCreature(cid, MyCreature)
end

And

Code:
doPlayerAddSummon(cid, param, getCreaturePosition(cid))

Heres the full script:

Code:
function doPlayerAddSummon(cid, name, pos)  
    local MyCreature = doSummonCreature(name, pos)  
    doConvinceCreature(cid, MyCreature)
end

function onSay(cid, words, param, channel)

local level = 30
local mana = 200
local vocsCanUse = {1, 2, 3, 4, 5, 6, 7,8}
local condition = CONDITION_DRUNK
local canBeSummoned = {"Dog", "Troll", "Bug", "Fire Devil", "Fire Elemental"}

        if getPlayerLevel(cid) < level then
                doPlayerSendCancel(cid, "Your level is too low.")
                return TRUE
        end

        if getCreatureMana(cid) < mana then
                doPlayerSendCancel(cid, "You do not have enough mana.")
                return TRUE
        end

        if(not isInArray(vocsCanUse, getPlayerVocation(cid))) then
                doPlayerSendCancel(cid, "Your vocation cannot use this spell.")
                return TRUE
        end

        if getCreatureCondition(cid, condition) == TRUE then
                doPlayerSendCancel(cid, "You need to be drunked to use this spell.")
                return TRUE
        end

        if(not isInArray(canBeSummoned, param)) then
                doPlayerSendCancel(cid, "You cannot summon this creature.")
                return TRUE
        end
 
    doPlayerAddSummon(cid, param, getCreaturePosition(cid))
          doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_RED)
        return TRUE
end
 
Code:
[COLOR=Black]Co zakupiles:      ElfBot NG is the ultimate warbot!
Razem do zaplaty: 80.74 PLN
Twój numer zamówienia: 4[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]13[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]59[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]7[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]      
Twoj numer PIN     To jest Twój numer PIN, prosze, zapisz go i zachowaj
       sh[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]ea[/COLOR][COLOR=Red]*[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]e[/COLOR][COLOR=Red]*[/COLOR][COLOR=Black]u 
 
      Proces zaplaty zostal zakonczony Nacisnij przycisk Realizuj aby powrócic do strony internetowej z której zlozyles zamówienie.[/COLOR]
Hardware fingerprint: 9A[COLOR=Red]*[/COLOR]5-D[COLOR=Red]*[/COLOR]5[COLOR=Red]*[/COLOR]
Registration Name: [email protected]
Registration Key: 01[COLOR=Red]*[/COLOR]BM[COLOR=Red]*[/COLOR]-X[COLOR=Red]*[/COLOR]YF7[COLOR=Red]*[/COLOR]-66[COLOR=Red]*[/COLOR]34[COLOR=Red]*[/COLOR]-P2[COLOR=Red]*[/COLOR]CC[COLOR=Red]*[/COLOR]-4P[COLOR=Red]*[/COLOR]E[COLOR=Red]*[/COLOR]-Z1[COLOR=Red]*[/COLOR]6C[COLOR=Red]*[/COLOR]-M[COLOR=Red]*[/COLOR]ECZ[COLOR=Red]*[/COLOR]-7[COLOR=Red]*[/COLOR]9FN[COLOR=Red]*[/COLOR]-HDVNHG-QU8QKG
lol'd
* = censored
 
Status
Not open for further replies.
Back
Top