Risolto rendere usabile anello antiexp

Stato
Discussione chiusa ad ulteriori risposte.

ScrikersTV

Utente Electrum
5 Gennaio 2018
274
23
43
104
Ciao, ho un problema. Ho creato un anello anti exp da 0 ma non me lo fa usare..
la query è questa:

DA ITEM_PROTO

Codice:
90014	Çà¿îÀÇ ¹ÝÁö	ITEM_MATERIAL	MATERIAL_LEATHER	1	ANTI_GIVE | ANTI_STACK | ANTI_MYSHOP | ANTI_SAFEBOX	NONE	NONE	NONE	0	50000	0	0	0	LIMIT_NONE	0	LIMIT_NONE	0	APPLY_NONE	0	APPLY_NONE	0	APPLY_NONE	0	3	0	0	0	0	0	0	0	0	-1	-1	-1	-1	-1	-1	0	0	0

la quest me l'ha compilata tutta ed è questa

Codice:
quest AntiExpRing begin
	state start begin
		when 90014.use begin
			if pc.getqf("inel_anti_exp") == 0 then
				syschat("Anti Exp - Attivato.")
				
				pc.setqf("inel_anti_exp", 1);
				pc.block_exp();
			else
				syschat("Anti Exp - Disattivato.")
				
				pc.setqf("inel_anti_exp", 0);
				pc.unblock_exp();
			end
		end
		
		when login begin
			if pc.getqf("inel_anti_exp") == 1 then
				syschat("L'anello anti-exp è attivato.")
				
				pc.block_exp();
			else
				syschat("L'anello anti-exp è disattivato.")
				
				pc.unblock_exp();
			end
		end
	end
end

DA NAVICAT:
Codice:
90014	Çà¿îÀÇ ¹ÝÁö	Anello anti-exp	5	0	0	1	237568	0	0		0	50000	0	0	0	0	0	0	0	0	0	0	0	0	0	0	3	0	0	0	0	0	-1	-1	-1	-1	-1	-1	0	0	0

Grazie
Messaggio unito automaticamente:

Quando clicco sull'anello non fa nulla
 
Ciao, ho un problema. Ho creato un anello anti exp da 0 ma non me lo fa usare..
la query è questa:

DA ITEM_PROTO

Codice:
90014    Çà¿îÀÇ ¹ÝÁö    ITEM_MATERIAL    MATERIAL_LEATHER    1    ANTI_GIVE | ANTI_STACK | ANTI_MYSHOP | ANTI_SAFEBOX    NONE    NONE    NONE    0    50000    0    0    0    LIMIT_NONE    0    LIMIT_NONE    0    APPLY_NONE    0    APPLY_NONE    0    APPLY_NONE    0    3    0    0    0    0    0    0    0    0    -1    -1    -1    -1    -1    -1    0    0    0

la quest me l'ha compilata tutta ed è questa

Codice:
quest AntiExpRing begin
    state start begin
        when 90014.use begin
            if pc.getqf("inel_anti_exp") == 0 then
                syschat("Anti Exp - Attivato.")
               
                pc.setqf("inel_anti_exp", 1);
                pc.block_exp();
            else
                syschat("Anti Exp - Disattivato.")
               
                pc.setqf("inel_anti_exp", 0);
                pc.unblock_exp();
            end
        end
       
        when login begin
            if pc.getqf("inel_anti_exp") == 1 then
                syschat("L'anello anti-exp è attivato.")
               
                pc.block_exp();
            else
                syschat("L'anello anti-exp è disattivato.")
               
                pc.unblock_exp();
            end
        end
    end
end

DA NAVICAT:
Codice:
90014    Çà¿îÀÇ ¹ÝÁö    Anello anti-exp    5    0    0    1    237568    0    0        0    50000    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    0    0    0    0    0    -1    -1    -1    -1    -1    -1    0    0    0

Grazie
Messaggio unito automaticamente:

Quando clicco sull'anello non fa nulla

Invece di
ITEM_MATERIAL MATERIAL_LEATHER

dovrebbe esserci qualcosa come:

 
Stato
Discussione chiusa ad ulteriori risposte.